@extends('layouts.front-layout') @section('title', 'User Login') @section('content')

User Orders

@foreach($get_orders as $order) @endforeach
User Name Total Price Tracking No Order Status Detail View
{{ $order->user->name ? $order->user->name : 'N/A' }} {{ $order->total ?? 'N/A' }} {{ $order->tracking_no ?? 'N/A' }} {{ $order->payment_status ?? 'N/A' }} Detail View
@endsection @section('script') @endsection