@extends('layouts.user-layout') @section('content')

User Orders

{{-- --}} @foreach ($get_orders as $order) @endforeach
User Name User Email Total PriceOrder StatusDetail View
{{ auth()->user()->first_name ?: '' }} {{ auth()->user()->email ?: '' }} {{ $order->total_price ?: '' }} Detail View
@endsection @section('script') @endsection