@extends('store.layouts.app') @section('title', 'Orders') @section('meta_description', 'Your orders – ' . ($store_name ?? config('app.name'))) @section('content')
#{{ $order->order_number }}
{{ ucfirst($order->status) }}{{ $order->created_at->format('M j, Y g:i A') }}
{{ $order->items->count() }} item(s) · {{ $order->items->sum('quantity') }} total qty
{{ $currency_symbol }}{{ number_format($order->total, 0) }}
View Details