26 lines
840 B
PHP
26 lines
840 B
PHP
@component('mail::message')
|
|
# Pesanan Anda Telah Diterima!
|
|
|
|
Terima kasih telah berbelanja di DFOOD. Berikut adalah detail pesanan Anda:
|
|
|
|
@if($meja)
|
|
{{-- Mengakses sebagai array. Hanya device_id yang tersedia. --}}
|
|
**Meja yang dipilih:** {{ $meja['device_id'] ?? $meja['id'] ?? 'N/A' }}
|
|
@endif
|
|
|
|
@component('mail::table')
|
|
| Item | Qty | Harga Satuan | Total Harga |
|
|
| :------------- | :-- | :----------- | :---------- |
|
|
@foreach($cartItems as $item)
|
|
| {{ $item['name'] }} | {{ $item['qty'] }} | Rp {{ number_format($item['price'], 0, ',', '.') }} | Rp {{ number_format($item['total_price'], 0, ',', '.') }} |
|
|
@endforeach
|
|
@endcomponent
|
|
|
|
### Total Pembayaran: Rp {{ number_format($cartTotal, 0, ',', '.') }}
|
|
|
|
Jika Anda memiliki pertanyaan, jangan ragu untuk menghubungi kami.
|
|
|
|
Terima kasih,<br>
|
|
{{ config('app.name') }}
|
|
@endcomponent
|