@extends('layouts.organization.app')
@section('content')
# |
In Time |
Out_Time |
Total Time |
Description |
Status |
Attendance Date |
Approved By |
Action |
@if(!empty($attendance))
@foreach($attendance as $rows)
{{$loop->iteration}} |
{{$rows->in_time}} |
{{$rows->out_time}} |
{{$rows->total_time}} |
{{$rows->description}} |
@if($rows->status=='Pending')
{{$rows->status}}
@else
{{$rows->status}}
@endif
|
{{date_format(date_create($rows->created_at),"d-M-Y")}} |
{{$rows->approved_by}} |
|
@endforeach
@endif
@endsection('content')