@extends('layouts.frontend') @section('seo') @if(auth()->check()) {{ auth()->user()->name }} 's Orders @endif @endsection @section('content')

Order {{ $order->order_number }} {{ $order->status }}

@foreach($products as $p) @endforeach
Product Quantity Price
{{-- @if($p->model->photos->count() > 0) @else --}} {{-- @endif --}}

{{ $p->name }}

${{ $p->price }}

{{ $p->pivot->quantity }}

${{ $p->price * $p->pivot->quantity }}

Order Total ${{ $order->billing_total }}
@endsection