|
|
{{ $purchase->created_at->format(config('date_format') . ' h:i:s') }} |
{{ $purchase->reference_no }} |
{{ $purchase->user->name }} |
{{ $purchase->supplier->name ?? 'N/A' }}
|
{{ $purchase->warehouse->name }} |
{{ $purchase->payment_status == 1 ? 'Due' : 'Paid' }}
|
{{ $purchase->grand_total }} |
{{ $purchase->grand_total - $purchase->paid_amount }} |
{{ $purchase->deleter->name ?? 'System' }} |
{{ $purchase->deleted_at->format(config('date_format') . ' h:i:s') }} |
@empty