@include('purchase::partials.styles')

✏️ Edit Vendor Bill - {{ $bill->bill_number }}

@if($errors->any())
@endif
@csrf @method('PUT')
📋 Bill Information
📦 Bill Items
@foreach($bill->items as $idx => $item) @endforeach
Product Unit Qty Rate Tax % Disc % Total
{{ $item->product->name ?? 'N/A' }}
{{ $item->product->sku ?? '' }}
{{ $item->unit->short_name ?? $item->unit->name ?? '-' }} ₹{{ number_format($item->total, 2) }}
🧮 Summary
Subtotal ₹{{ number_format($bill->subtotal, 2) }}
Tax Amount ₹{{ number_format($bill->tax_amount, 2) }}
Discount -₹{{ number_format($bill->discount_amount, 2) }}
₹{{ number_format($bill->shipping_charge, 2) }}
{{ $bill->adjustment >= 0 ? '+' : '' }}₹{{ number_format($bill->adjustment, 2) }}
Grand Total ₹{{ number_format($bill->grand_total, 2) }}
Cancel