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

User Orders

@foreach($get_orders as $order) @endforeach
S.N. User Name Total Price Tracking No Order Status Detail View
{{ $loop->iteration }} {{$order->user->first_name ? : ''}} {{$order->total_price ? : ''}} {{$order->order_number ? : ''}} {{ $order->order_status }} Detail View
@endsection @section('script') @endsection