@extends('admin.layouts.home') @section('title', 'Marketplace Dashboard') @section('styles') @endsection @section('content')
| Order # | Customer | Amount | Status | Date |
|---|---|---|---|---|
| #{{ $order->order_number }} | {{ $order->user->name }} | ${{ number_format($order->total_amount, 2) }} | @php $statusClass = [ 'pending' => 'bg-warning', 'processing' => 'bg-info', 'completed' => 'bg-success', 'cancelled' => 'bg-danger', ][$order->status] ?? 'bg-secondary'; @endphp {{ ucfirst($order->status) }} | {{ $order->created_at->format('M d, Y') }} |
| Product | Store | Price | Orders |
|---|---|---|---|
|
@if($product->thumbnail)
|
{{ $product->store->name ?? 'N/A' }} | ${{ number_format($product->price, 2) }} | {{ $product->orders_count }} |