@extends('layouts.employee') @section('page-title', 'Add Conveyance') @section('page-subtitle', 'Log your daily travel in a clean sheet layout') @section('content') {{-- TOP SECTION --}}

Add Conveyance

Use this sheet to enter your daily conveyance trips.

You are entering conveyance for {{ $targetMonthLabel }} ({{ $monthStart->format('d M Y') }} – {{ $monthEnd->format('d M Y') }}). Submission allowed till {{ $cutoffDate->format('d M Y') }}.

Instructions
{{-- CARD --}}
{{-- Card header --}}

Daily Conveyance Entries

Keep your entries clear and complete. You can add multiple rows in one go.

{{-- CARD BANNER (for success / error visible in-card) --}} {{-- FORM --}}
@csrf {{-- Save mode: draft / final --}} {{-- TABLE --}}
{{-- JS rows --}}
Date From To Client Mode Amount (₹) Remarks Return
{{-- TOTAL BAR --}}
Total (including return trips): ₹ 0.00
{{-- Bottom actions --}}
Save Draft will save as draft (not final). • Submit Conveyance will submit final entries.
{{-- Client info + request box --}}

Clients & Rules

{{-- Return Fare Modal --}} @php $clientOptionsHtml = ''; foreach ($clients as $c) { $clientOptionsHtml .= ''; } $clientOptionsHtml .= ''; @endphp {{-- Styles: equal input heights + mobile labels above inputs (hide pseudo ::before on mobile) --}} {{-- Floating global banner (mobile-friendly toast) --}} @endsection