@if (session('status'))
Success!
{{ session('status') }}
@endif
@if (session('error'))
Error!
{{ session('error') }}
@endif
Nama Shift
|
Start
|
End
|
Perbantuan Shift
|
|
@if ($shifts->isEmpty())
Data tidak ditemukan
|
@endif
@foreach ($shifts as $shift)
{{ $shift->name }}
|
{{ $shift->start_time }}
|
{{ $shift->end_time }}
|
{!! $shift->is_perbantuan_shift
? ''
: '' !!}
|
@if ($shift->id != 1)
@endif
|
@endforeach
{{ $shifts->links() }}