@extends('layouts.employee') @section('title', 'Financial Oversight') @section('content')

Financial Logistics

Overview of completed jobs and calculated earnings.

Total Earned (Verified)

${{ number_format($totalEarnings, 2) }}
@forelse($payouts as $item) @empty @endforelse
Job Date Site / Duty # Duration Rate Total
{{ $item['date']->format('M d, Y') }}
{{ $item['start_time'] }} - {{ $item['end_time'] }}
{{ $item['site_name'] }}
#{{ $item['duty_number'] }} {{ $item['type'] }}
{{ number_format($item['hours'], 2) }} hrs ${{ number_format($item['rate'], 2) }}/hr
(Avg)
${{ number_format($item['total'], 2) }}

No finalized payouts recorded

@if($payouts->hasPages())
{{ $payouts->links() }}
@endif
@endsection