@extends('layouts.app') @php $month = request()->month ?? now()->format('m'); $year = request()->year ?? now()->format('Y'); @endphp @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'Aylık Talepler' => '/operation/monthly-tickets/index', 'Onaylanmış Talepler' => '/operation/monthly-tickets/approved?month=' . $month . '&year=' . $year, ], ]) !!} @endsection @section('content')
{{-- * MONTH AND YEAR SELECT --}}
    @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
{{ 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