@extends('layouts.admin') @section('title', 'Sales Report') @section('page_title', 'Sales Report') @section('content')
| Order # | Customer | Payment Method | Items | Total | Status | Date | Actions | |
|---|---|---|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->user->name }} | {{ $order->user->email }} | {{ $paymentMethod }} | {{ $order->items->count() }} | {{ \App\Support\Currency::symbol() }}{{ number_format($order->total, 2) }} | {{ ucfirst($order->status) }} | {{ $order->created_at->format('M d, Y') }} | View |
| No sales data found | ||||||||