@extends('layouts.employee') @section('page-title', $currentMonthLabel . ' Claims') @section('page-subtitle', 'Manage your current travel expenses') @section('content')
Submission Window: {{ $monthStart->format('d M') }} - {{ $cutoffDate->format('d M') }} @if($today->gt($cutoffDate)) Window Closed @else Active @endif
Submitted
₹{{ number_format($totals['submitted']) }}
Draft
₹{{ number_format($totals['draft']) }}
Total Claims
₹{{ number_format($totals['submitted'] + $totals['draft']) }}
Start by adding your first conveyance claim for this month.
@if($today->lte($cutoffDate)) + Add Entry @endif| Date | Route / Mode | Client / Purpose | Amount | Return | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $c->date->format('d M') }}
{{ $c->date->format('D') }}
|
{{ $c->from_location }}
→
{{ $c->to_location }}
{{ $c->mode }}
|
@if($c->client)
{{ $c->client->name }}
@else
No Client
@endif
@if($c->remarks)
{{ $c->remarks }}
@endif
|
₹{{ number_format($rowTotal, 2) }} |
@if($c->is_return)
Custom
@endif
@else
—
@endif
|
@if($c->status === 'draft') Draft @else Submitted @endif | @if($canEdit) @else Locked @endif |