@extends('layouts.employee') @section('page-title', $currentMonthLabel . ' History') @section('page-subtitle', 'Verified claim details') @section('content')

{{ $currentMonthLabel }} Report

Verified submission for {{ $monthStart->format('F Y') }}

← Back to History
Total Amount
₹{{ number_format($monthTotalSubmitted) }}
Entries
{{ $conveyances->count() }}
@forelse($conveyances as $c) @php $rowTotal = $c->total_amount; $isSunday = $c->date->isSunday(); @endphp @empty @endforelse @if($conveyances->isEmpty() === false) @endif
Date Route Client / Remarks Mode Amount Return
{{ $c->date->format('d') }} {{ $c->date->format('D') }}
{{ $c->from_location }} {{ $c->to_location }}
@if($c->client)
{{ $c->client->name }}
@endif @if($c->remarks)
{{ $c->remarks }}
@endif
{{ $c->mode }} ₹{{ number_format($rowTotal, 2) }} @if($c->is_return) Yes @if($c->return_amount)
(₹{{ $c->return_amount }})
@endif @else - @endif
No records found for this period.
Total Claimed ₹{{ number_format($monthTotalSubmitted, 2) }}
@endsection