@extends('customers.layout') @section('breadcrumb')
| Name: | {{ $supplier->name ?: '—' }} |
| Contact: | {{ $supplier->contact ?: '—' }} |
| Alt. Contact: | {{ $supplier->alt_contact ?: '—' }} |
| Balance: | UGX {{ number_format($supplier->balance ?? 0) }} |
| Created: | {{ Carbon\Carbon::parse($supplier->created_at)->format('d M Y, H:i') }} |
| Updated: | {{ Carbon\Carbon::parse($supplier->updated_at)->format('d M Y, H:i') }} |