@extends('layouts.master') @section('content')
@if ($order)
Products
@foreach ($order->products as $item)

${{$item->pivot->price}} x ({{$item->pivot->quantity}})

@endforeach

Order Summary

Subtotal $ {{$order->subtotal}}
Shipping ${{$order->delivery_fee }}
Total $ {{ $order->order_total}}
@endif
@endsection @push('styles') @endpush()