@include('components/header')
@include('components/sidebar')
Employee Of The Week List
Sr. No |
Employee Id |
Employee Name |
Points |
Total award |
@php $i = 0 @endphp
@foreach($data as $m)
@php $total_points = $m->Total_point ?? 0; $total_award = $m->Total_award ?? 0; @endphp
@php $i = $i+1 @endphp
@for($i=$i;$i<=count($data);)
{{$i}}
|
@break
@endfor
{{$m->id}} |
{{$m->first_name}}
{{$m->last_name}} |
{{$total_points}} |
{{$total_award}} |
@endforeach
@if(session('done'))
@elseif(session('edit'))
@elseif(session('delete'))
@endif
@include('components/footer')