@extends('layouts.app') @section('content')

{{ \Carbon\Carbon::now()->isoFormat('D MMMM Y') }} Tarihindeki Talepler

    @foreach ($customers as $item)
  1. @if ($item->roles[0]->name == 'Company') @elseif ($item->roles[0]->name == 'Branch') @endif

    {{ $item->name }}

    {{ $item->city }}

    {{ $item->district }}

  2. @endforeach @if (count($customers) <= 0) Hiç Veri Bulunamadı @endif
{{ $current_month->month_name }}
P
S
Ç
P
C
C
P
@foreach ($allData as $data) @php $ticketDates = $tickets ->pluck('date') ->map(function ($date) { return Carbon\Carbon::parse($date)->format('Y-m-d'); }) ->toArray(); @endphp @if ($data->day == $current_day && $data->month == $current_month->month && $current_month->month == now()->format('m')) @else @endif @endforeach
{{ count($customers) }}
@include('components.showImage') @if (session('error')) @include('components.error-modal') @endif @if (session('success')) @include('components.success-modal') @endif @endsection @section('javascript') @endsection