User Orders
| User Name | Total Price | Tracking No | Order Status | Detail View | Action |
|---|---|---|---|---|---|
| {{ $order->first_name ?? 'Guest' }} | {{ $order->total_price ?: '' }} | {{ $order->tracking_no ?: '' }} | {{ $order->order_status }} | Detail View |
|
@extends('layouts.admin-layout') @section('title') User Orders @endsection @section('content')
| User Name | Total Price | Tracking No | Order Status | Detail View | Action |
|---|---|---|---|---|---|
| {{ $order->first_name ?? 'Guest' }} | {{ $order->total_price ?: '' }} | {{ $order->tracking_no ?: '' }} | {{ $order->order_status }} | Detail View |
|