@extends('admin.layouts.app') @section('title', 'Orders') @section('content')
Order ID | Customer | Total | Status | Date | Actions |
---|---|---|---|---|---|
#{{ $order->id }}
|
{{ $order->user->name }}
{{ $order->user->email }}
|
${{ number_format($order->total, 2) }}
|
{{ $order->status->label() }} | {{ $order->created_at->format('M d, Y H:i') }} | View Details |