{{ $clinicData['address']}}
{{ $invoiceData['customer_name'] ?? 'Rita' }}
Telepon Selular: {{ $invoiceData['customer_phone'] ?? '+62 81336538443' }}
| No. Invoice: | {{ $invoiceData['no_invoice'] ?? 'N/A' }} |
| Tanggal Invoice: | {{ $invoiceData['tanggal_invoice'] ?? 'N/A' }} |
| Nama | Kuantitas | Harga | Total (Rp) |
|---|---|---|---|
| {{ $item->group_name }} | {{ $item->quantity }} | {{ number_format($item->each_price, 0, ',', '.') }} | {{ number_format($item->price_overall, 0, ',', '.') }} |
| {{ $service->item_name }} | {{ $service->quantity }} | {{ number_format($service->selling_price, 0, ',', '.') }} | {{ number_format($service->price_overall, 0, ',', '.') }} |
| {{ $petshop->item_name }} | {{ $petshop->quantity }} | {{ number_format($petshop->selling_price, 0, ',', '.') }} | {{ number_format($petshop->price_overall, 0, ',', '.') }} |
| Total: | Rp {{ number_format($invoiceData['total'] ?? 0, 0, ',', '.') }} |