Success
Error
{{ $supplier->name }}
{{ $supplier->email ?? 'No email' }} | {{ $supplier->phone ?? 'No phone' }}
Supplier Information
{{ $supplier->contact_person ?? 'Not specified' }}
{{ $supplier->payment_terms ?? 'Not specified' }}
{{ $supplier->tax_id ?? 'Not specified' }}
@if($supplier->website) {{ $supplier->website }} @else Not specified @endif
{{ $supplier->address ?? 'Not specified' }}
@if($supplier->notes) {{ $supplier->notes }} @else No additional notes @endif
Recent Purchases
New Purchase| Invoice # | Date | Total | Tax | Grand Total |
|---|---|---|---|---|
| #{{ $purchase->invoice_no ?? 'N/A' }} | {{ $purchase->created_at->format('M d, Y') }} | ${{ number_format($purchase->total, 2) }} | ${{ number_format($purchase->tax_total, 2) }} | ${{ number_format($purchase->grand_total, 2) }} |
Activity Timeline
Supplier Created
{{ $supplier->created_at->format('M d, Y \a\t h:i A') }}
Last Purchase
{{ $purchaseStats['last_purchase'] }}
Last Updated
{{ $supplier->updated_at->format('M d, Y \a\t h:i A') }}