← Back to Bill
USMAN BILAL ENTERPRISES
Cotton Waste Processor & Dealer
Address: Your Business Address Here | Phone: 000-0000000 | Email: info@usmanbilanent.com
PURCHASE BILL
Bill No: {{ $purchase->bill_no }}
Date: {{ $purchase->date->format('d-M-Y') }}
@if($purchase->ref_no)
Reference: {{ $purchase->ref_no }}
@endif
Created: {{ $purchase->created_at->format('d-M-Y h:i A') }}
User: {{ $purchase->user->name ?? 'System' }}

Supplier Details

{{ $purchase->party->name }}
Code: {{ $purchase->party->code }} @if($purchase->party->phone) | Phone: {{ $purchase->party->phone }} @endif @if($purchase->party->address)
Address: {{ $purchase->party->address }} @endif
@foreach($purchase->items as $index => $item) @endforeach
# Item Description Code Qty Unit Rate Amount
{{ $index + 1 }} {{ $item->item->name }} {{ $item->item->code }} {{ number_format($item->quantity, 2) }} {{ $item->item->unit }} {{ number_format($item->rate, 2) }} {{ number_format($item->amount, 2) }}
Total Items: {{ $purchase->items->count() }} {{ number_format($purchase->items->sum('quantity'), 2) }} Rs. {{ number_format($purchase->gross_amount, 2) }}
Gross Amount: Rs. {{ number_format($purchase->gross_amount, 2) }}
Discount: Rs. {{ number_format($purchase->discount, 2) }}
Net Amount: Rs. {{ number_format($purchase->net_amount, 2) }}
@if($purchase->remarks)

Remarks:

{{ $purchase->remarks }}
@endif

Amount in Words:

{{ $amountInWords ?? 'Rupees ' . number_format($purchase->net_amount, 2) . ' Only' }}