@extends('backoffice.layouts.app') @section('content')

All Orders

{{--
{{--
--}}
Reset
Order Summary
Total Subtotal
${{ number_format($totals['subtotal'], 2) }}
Total Shipping
${{ number_format($totals['shipping'], 2) }}
Total Grand Total
${{ number_format($totals['grand_total'], 2) }}
@forelse ($orders as $index => $order) @empty @endforelse
# User Subtotal Shipping Grand Total
{{ $index + 1 }} {{ $order->user->first_name ?? 'Guest' }} {{ $order->user->last_name ?? '' }} {{ number_format($order->subtotal, 2) }} {{ number_format($order->shipping, 2) }} {{ number_format($order->grand_total, 2) }}
No orders found.
@endsection