USMAN BILAL Enterprises
Cotton Waste Processor & Dealer
{{ $contract->type == 'purchase' ? 'PURCHASE' : 'SALE' }} CONTRACT
Contract No: {{ $contract->contract_no }}
Title: {{ $contract->title }}
Start Date: {{ $contract->start_date->format('d M, Y') }}
End Date: {{ $contract->end_date ? $contract->end_date->format('d M, Y') : 'Open Ended' }}
Status: {{ ucfirst($contract->status) }}
{{ $contract->type == 'purchase' ? 'Supplier' : 'Customer' }}: {{ $contract->party->name ?? '-' }}
Address: {{ $contract->party->address ?? '-' }}
Phone: {{ $contract->party->phone ?? '-' }}
NTN: {{ $contract->party->ntn ?? '-' }}
Contract Details
Description Quantity Unit Rate Amount
{{ $contract->item->name ?? 'General Contract' }} {{ number_format($contract->agreed_quantity, 2) }} {{ ucfirst($contract->quantity_unit) }} {{ number_format($contract->agreed_rate, 2) }} {{ number_format($contract->contract_value, 2) }}
Total Contract Value: Rs. {{ number_format($contract->contract_value, 2) }}
@if($contract->agent_commission_rate > 0)
Agent Commission Rate: Rs. {{ number_format($contract->agent_commission_rate, 2) }} / unit
@endif @if($contract->transport_rate > 0)
Transport Rate: Rs. {{ number_format($contract->transport_rate, 2) }} / unit
@endif
Delivered Quantity: {{ number_format($contract->delivered_quantity, 2) }} {{ $contract->quantity_unit }}
Pending Quantity: {{ number_format($contract->pending_quantity, 2) }} {{ $contract->quantity_unit }}
@if($contract->terms)
Terms & Conditions
{!! nl2br(e($contract->terms)) !!}
@endif @if($contract->remarks)
Remarks
{{ $contract->remarks }}
@endif
Party Signature
Authorized Signature
This is a computer generated document. Printed on: {{ now()->format('d M, Y h:i A') }}