@extends('admin.layout') @section('page-title', 'Orders') @section('content')
Manage and track all customer orders
| Order # | Customer | Status | Payment | Amount | Date | Actions |
|---|---|---|---|---|---|---|
|
{{ $order->order_number }}
|
{{ $order->customer->name }}
@if($order->customer->phone)
{{ $order->customer->phone }}
@endif
|
{{ ucfirst($order->status) }} | {{ ucfirst($order->payment_status) }} |
${{ number_format($order->total_amount, 2) }}
|
{{ $order->created_at->format('M d, Y') }}
{{ $order->created_at->format('h:i A') }}
|
View |
No orders found@if(request('search') || request('status') || request('payment_status')) Try adjusting your filters to see more results. @else Get started by creating your first order for a customer. @endif |
||||||