@extends('admin.layouts.app') @section('title', 'Dashboard') @section('content')
| Order # | Customer | Total | Status |
|---|---|---|---|
| {{ $order->order_number }} | {{ $order->customer_name }} | KSh {{ number_format($order->total, 2) }} | {{ $order->status_badge['label'] }} |
| No orders yet | |||
| Product | Price | Orders |
|---|---|---|
| {{ Str::limit($product->name, 30) }} | KSh {{ number_format($product->price, 2) }} | {{ $product->order_items_count }} |
| No products yet | ||
| Quotation # | Customer | Total | Status | Valid Until |
|---|---|---|---|---|
| {{ $quotation->quotation_number }} | {{ $quotation->customer_name }} | KSh {{ number_format($quotation->total, 2) }} | {{ $quotation->status_badge['label'] }} | {{ $quotation->valid_until?->format('M d, Y') ?? '-' }} |
| No quotations yet | ||||