@extends('layouts.app') @section('title','Attendance Report') @section('page-title','Attendance Report') @section('content')
Present Days
{{ $records->where('status','present')->count() }}
Absent
{{ $records->where('status','absent')->count() }}
Total Labour Cost
GH₵ {{ number_format($totalLabourCost,2) }}
@foreach($records as $r) @endforeach
DateStaffRoleStatusTime InTime OutPay
{{ $r->date->format('d/m/Y') }}{{ $r->staff->name??'-' }}{{ $r->staff->role??'-' }}{{ $r->status }}{{ $r->time_in??'-' }}{{ $r->time_out??'-' }}{{ $r->daily_rate?'GH₵ '.number_format($r->daily_rate,2):'-' }}
@endsection