@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 --}}
-
-
-
-
-
-
-
-
-
-
-
-
{{ 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