@if($yearWiseAllocations->isEmpty())
No leave settings found.
@else
| Year |
Created At |
Created By |
Updated At |
Updated By |
Actions |
@foreach($yearWiseAllocations as $yearRow)
| {{ $yearRow->year }} |
{{ $yearRow?->created_at?->format('d-m-Y') }} |
{{ $yearRow?->creator?->name ?? '' }} |
{{ isset($yearRow?->updated_by) ? $yearRow?->updated_at?->format('d-m-Y') : '' }} |
{{ isset($yearRow?->updated_by) ? $yearRow?->editor?->name : '' }} |
|
@endforeach
@endif