@extends('admin.layout') @section('title', 'Orders Management') @section('content')
| Order # | Customer | Total | Status | Payment Status | Date | Actions |
|---|---|---|---|---|---|---|
|
{{ $order->order_number }}
|
{{ $order->shipping_address['name'] ?? trim(($order->shipping_address['first_name'] ?? '') . ' ' . ($order->shipping_address['last_name'] ?? '')) }} Phone: {{ $order->shipping_address['phone'] ?? '' }} |
৳{{ number_format($order->total, 2) }} | {{ ucfirst($order->status) }} | {{ ucfirst($order->payment_status) }} | {{ $order->created_at->format('M d, Y') }} | View |
| No orders found. | ||||||