@extends('layouts.admin-layout') @section('title') User Orders @endsection @section('content')

User Orders

@foreach ($get_orders as $order) @endforeach
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
@endsection @section('script') @endsection