@extends('adminlte::page') @section('title', 'Dashboard - MobileSentrix Admin') @section('content_header')
| Order ID | Customer | Amount | Status |
|---|---|---|---|
| {{ $order->order_number }} | {{ $order->customer_name }} | ${{ number_format($order->total, 2) }} | @php $badgeClass = match($order->status) { 'completed' => 'badge-success', 'pending' => 'badge-warning', 'processing' => 'badge-info', 'cancelled' => 'badge-danger', 'refunded' => 'badge-secondary', default => 'badge-light', }; @endphp {{ ucfirst($order->status) }} |
| No recent orders | |||
| Product | Category | Sales |
|---|---|---|
| {{ $product->name }} | {{ $product->category->name }} | {{ $product->reviews_count }} |
| No products found | ||