@extends('layouts.layout-admin') @section('title', 'Order History') @section('header_title', 'Order History') @section('header_subtitle', 'View all orders history') @section('content')
| Order Code | Customer | Total Amount | Status | Payment Method | Created At | Actions |
|---|---|---|---|---|---|---|
| {{ $order->order_code }} | {{ $order->user->name ?? 'N/A' }} | Rp {{ number_format($order->total_amount, 0, ',', '.') }} | {{ ucfirst($order->status) }} | {{ $order->midtrans_payment_type }} | {{ $order->created_at->format('d M Y') }} | |
|
No Order Found |
||||||