@extends('layouts.admin') @section('title', 'New Delivery Challan') @section('page-title', 'New Delivery Challan') @push('styles') @endpush @section('breadcrumbs') Delivery Challans chevron_right New Delivery Challan @endsection @section('content')
@csrf

Delivery Challan Information

Bill From *

search
search
Product / Service Unit Quantity Rate Discount Tax Amount Action
No Items Selected

Extra Information

Signature

Summary

Amount {{ \App\Models\Currency::formatAmount(0, $defaultCurrencyCode) }}
Tax {{ \App\Models\Currency::formatAmount(0, $defaultCurrencyCode) }}
Discount -{{ \App\Models\Currency::formatAmount(0, $defaultCurrencyCode) }}

Total (Rounded) {{ \App\Models\Currency::formatAmount(0, $defaultCurrencyCode) }}

Zero

Cancel
@push('styles') @endpush @push('scripts') @php $dcCurrencyClient = [ 'code' => $defaultCurrencyCode ?? \App\Models\Currency::getDefaultCode(), 'symbol' => $defaultCurrencySymbol ?? \App\Models\Currency::getSymbol(), 'symbolPosition' => $defaultCurrencySymbolPosition ?? 'before', 'decimalPlaces' => (int) ($defaultCurrencyDecimalPlaces ?? 2), ]; @endphp @endpush @endsection