@extends('layouts.admin') @section('title', 'Delivery Challans') @section('page-title', 'Delivery Challans') @section('content')
@if(!$panelOpen)
Export
to
to
Clear
@if($challans->isNotEmpty())
@foreach($challans as $challan) @php $status = $challan->statusMeta(); @endphp @endforeach
Issue Date Doc. No. Status Client Name Valid Until Amount Action
{{ $challan->challan_date->format('d M Y') }} {{ $challan->challan_number }} {{ $status['label'] }} {{ $challan->customer->name ?? '—' }} {{ $challan->shipping_date?->format('d M Y') ?? '—' }} ₹{{ number_format($challan->grand_total, 2) }}
@csrf @method('DELETE')
@else

Record your deliveries

Create delivery challans to document goods dispatched to your clients.

@include('admin.delivery-challans.partials.lifecycle')
In the Delivery Challans Tab, you can:
@foreach($features as $feature)
{{ $feature }}
@endforeach
@endif
@if($challans->isNotEmpty())
@include('admin.delivery-challans.partials.lifecycle')
@endif @else
@include('admin.delivery-challans.partials.sidebar-toolbar')
@if($selected && isset($deliveryChallan))
@include('admin.delivery-challans.partials.preview', [ 'embedded' => true, 'closeUrl' => route('admin.delivery-challans.index', request()->except('challan')), 'createTypes' => $createTypes, ])
@endif
@endif
@endsection @push('styles') @if($panelOpen ?? false) @endif @endpush @push('scripts') @if($panelOpen ?? false) @include('admin.delivery-challans.partials.preview-scripts') @endif @endpush