@extends('layouts.app') @section('title', 'Orders') @section('heading', 'Orders') @section('content')
No orders yet.
| Order | Customer | Total | Status | Date |
|---|---|---|---|---|
| @can('view', $order) {{ $order->order_number }} @else {{ $order->order_number }} @endcan | {{ $order->user?->email ?? '—' }} | {{ number_format($order->total, 2) }} | {{ $order->status }} | {{ $order->created_at->format('M j, Y') }} |