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

Recent Orders

@foreach($orders as $order) @endforeach
Order id Order Date Total Status Action
{{ $order->order_number }} {{ $order->created_at->format('d/m/Y') }} ${{ $order->billing_total }}

{{ ucfirst($order->status) }}

@if($order->invoice) @endif
@endsection @section("css") @endsection