@extends('layouts.main') @push('nav_title') View Order @endpush @section('page_title')

View Order

Order List

@endsection @section('side_bar') @include('layouts/side_bar') @endsection @section('profile') @include('layouts/profile') @endsection @section('main_div')
@foreach($order_details as $order)

User Name: {{ $order['user_name'] }}

Email: {{ $order['user_email'] }}

Total: {{ $order['total'] }}

Order Date: {{ $order['created_at'] }}

Products:

@endforeach

Order Status

@csrf
@error('category'){{$message}}@enderror
@endsection