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