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

All Orders

{{--
{{--
--}}
{{--
Reset
--}}
@forelse ($orders as $index => $order) @empty @endforelse
# User Subtotal Shipping Grand Total Status Created At Action order details
{{ $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) }} {{ ucwords(str_replace('_', ' ', $order->status)) }} {{ $order->created_at->format('d M Y') }} Update Status View
{{-- --}}
@endsection