@extends('layouts.app') @section('title', 'Edit Delivery Challan') @push('css') @endpush @section('content')

Edit {{ $deliveryChallan->challan_number }}

@csrf @method('PUT')
Basic Details
@error('customer_id')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
Item Details
@foreach($deliveryChallan->items as $index => $challanItem) @endforeach
Item Name Qty Rate Amount
Cancel
Summary
Subtotal {{ formatCurrency($deliveryChallan->subtotal) }}
Tax Amount {{ formatCurrency($deliveryChallan->tax_amount) }}

Total ({{ getCurrencySymbol() }}) {{ number_format($deliveryChallan->total_amount, 2) }}
Only draft challans can be edited. This challan is currently in {{ strtoupper($deliveryChallan->status) }} status.
@push('scripts') @endpush @endsection