@extends('layouts.master') @section('content')
| # | Employee | Year | Month | OT Hours | Multiplier | OT Amount | Notes | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $ot->employee->first_name }} {{ $ot->employee->last_name }} | {{ $ot->year }} | {{ \Carbon\Carbon::createFromDate($ot->year, $ot->month, 1)->format('F') }} | {{ number_format($ot->ot_hours, 2) }} | {{ $ot->ot_multiplier }}× | {{ number_format($ot->ot_amount, 0) }} | {{ $ot->notes }} | |
| No overtime records found. | ||||||||