@extends('layouts.app') @section('title', 'Order Receive') @section('breadcrumb', 'Order Receive') @section('sub-breadcrumb') {{-- --}} List Order Invoice @endsection @section('order-p', 'kt-menu__item--open kt-menu__item--here') @section('order-receive', 'kt-menu__item--active') @section('content')
@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
@foreach ($order['brand_outlet_order_details'] as $item) @endforeach
Item Name Quantity Price Total
{{$item['name']}} {{$item['qty']}} Rp. {{number_format($item['price'])}} Rp. {{number_format($item['subtotal'])}}

  Shipping Information

@csrf
@endsection @section('custom-style') @endsection @section('custom-script') @endsection