Holiday Master
{{-- ALERTS --}}
@if(session('success'))
{{ session('success') }}
@endif
{{-- FORM --}}
{{-- TABLE --}}
| ID |
Name |
Date |
Type |
Remark |
Action |
@foreach($holidays as $h)
| {{ $h->id }} |
{{ $h->name }} |
{{ $h->date->format('d M Y') }} |
{{ ucfirst($h->type) }} |
{{ $h->remark ?? '-' }} |
Edit
Delete
|
@endforeach