@extends('layouts.app') @php $month = request()->month ?? now()->format('m'); $year = request()->year ?? now()->format('Y'); @endphp @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'Hızlı Atama Tipleri' => '/operation/select/quick-assign-type', 'Aylık Hızlı Atama' => '/operation/monthly/quick-assign/index?month=' . $month . '&year=' . $year, ], ]) !!} @endsection @section('content')
{{-- * MONTH AND YEAR SELECT --}}
    @foreach ($demands as $demand)
  1. @if ($demand?->tickets?->user->user_departman?->customer_user->roles[0]->name == 'Company') @elseif ($demand?->tickets?->user->user_departman?->customer_user->roles[0]->name == 'Branch') @endif

    {{ $demand?->tickets?->user->user_departman->name }}

    Date
    Adres
    {{ $demand->quantity }} {{ $demand->categories->title }}
  2. @endforeach @if (count($demands) <= 0) Hiç Veri Bulunamadı @endif
{{ count($demands) }}
@if ($errors->any()) @include('components.error-modal-second') @endif @if (session('error')) @include('components.error-modal') @endif @if (session('success')) @include('components.success-modal') @endif @include('components.showImage') @endsection @section('javascript') @endsection