@include('layouts.notification')
Oulet Name |
: {{$order['brand_outlet']['name']}} |
Oulet Address |
: {{$order['brand_outlet']['address']}} |
Order Date |
: {{$order['order_date']}} |
Accurate Sales Order |
: {{$order['order_id_accurate']}} |
Status Outlet |
:
@if ($order['brand_outlet']['status_franchise'] == 1)
Outlet Franchise
@else
Outlet Brand
@endif
|
Total Price |
: Rp. {{number_format($order['total'])}} |
Total Items |
: {{$order['item_total']}} pcs |
User Order |
: {{$order['user_order']['name']}} |
User Email |
: {{$order['user_order']['email']}} |
User Phone |
: {{$order['user_order']['phone']}} |
Detail Items
Item Name |
Quantity |
Price |
Total |
@foreach ($order['brand_outlet_order_details'] as $item)
{{$item['name']}} |
{{$item['qty']}} |
Rp. {{number_format($item['price'])}} |
Rp. {{number_format($item['subtotal'])}} |
@endforeach