@extends('layouts.app') @section('title','Labour Cost') @section('page-title','Labour Cost Report') @section('content')
By Staff Member
@foreach($byStaff->sortByDesc('total') as $staffData) @endforeach
NameRoleDaysTotal Pay
{{ $staffData['name'] }}{{ $staffData['role'] }}{{ $staffData['days'] }}GH₵ {{ number_format($staffData['total'],2) }}
TOTALGH₵ {{ number_format($byStaff->sum('total'),2) }}
@endsection