@extends('layouts.app') @section('title', 'Delivery Challans') @section('content')

Delivery Challans

Create New Challan
@if(session('success')) @endif
@forelse($deliveryChallans as $challan) @empty @endforelse
Challan # Customer Date Amount Status Actions
{{ $challan->challan_number }} {{ $challan->customer->name }} {{ \Carbon\Carbon::parse($challan->date)->format('d M Y') }} {{ formatCurrency($challan->total_amount) }} @php $badgeClass = [ 'draft' => 'bg-light-secondary text-secondary', 'open' => 'bg-light-info text-info', 'delivered' => 'bg-light-success text-success', 'returned' => 'bg-light-danger text-danger' ][$challan->status] ?? 'bg-light-secondary text-secondary'; @endphp {{ $challan->status }}
No delivery challans found. Create your first challan.
{{ $deliveryChallans->links() }}
@endsection