@extends('layouts.admin') @section('title', 'Dashboard') @section('page_title', 'Dashboard') @section('content')
| Order # | Customer | Amount | Status | Date | Action |
|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->user->name }} | {{ \App\Support\Currency::symbol() }}{{ number_format($order->total, 2) }} | {{ ucfirst($order->status) }} | {{ $order->created_at->format('M d, Y') }} | View |
| No orders available | |||||
All products have good stock levels
@endforelse