@extends('admin.layouts.home') @section('title', 'Orders Management') @section('styles') @endsection @section('content')
| Order # | Customer | Products | Total | Status | Date | Actions |
|---|---|---|---|---|---|---|
| #{{ $order->order_number }} |
@if($order->user)
@if($order->user->avatar)
@else
Guest
@endif
{{ $order->user->name }}
|
@foreach($order->products->take(3) as $product)
@if($product->thumbnail)
@endforeach
@if($order->products->count() > 3)
+{{ $order->products->count() - 3 }}
@endif
|
${{ number_format($order->total_amount, 2) }} | @php $statusClass = [ 'pending' => 'bg-warning text-dark', 'processing' => 'bg-info text-white', 'shipped' => 'bg-primary', 'delivered' => 'bg-success', 'completed' => 'bg-success', 'cancelled' => 'bg-danger', ][$order->status] ?? 'bg-secondary'; @endphp {{ ucfirst($order->status) }} | {{ $order->created_at->format('M d, Y H:i') }} |