@php $userRole = auth()->user()->roles[0]->id; $page_name = 'Staff Working'; $shift_id = 3; $transactions = []; $totalAmount = 0; @endphp @include('partial.header') @include('partial.loader')

Staff Working

@foreach($staffs as $staff)
{{$loop->iteration}}. {{$staff->name}}
{{$staff->username}}
{{$staff->role}}

{{$staff->status}}

@if($staff->working_since > 0) {{ gmdate('H:i:s', $staff->working_since) }} @endif

@endforeach
@include('partial.footer')