Order Detail

@include('layouts.alert')

Order Detail

Total Price {{ $order->total_price }}
Transaction Time {{ $order->transaction_time }}
Total Item {{ $order->total_item }}

All Products

@foreach ($orderItems as $item) @endforeach
Product Name Price Quantity Total Price
{{ $item->product->name }} {{ $item->product->price }} {{ $item->quantity }} {{ $item->total_price }}