@extends('layouts.main')
@push('nav_title')
{{-- User--}}
Enzy
@endpush
@section('page_title')
Orders
@endsection
@section('profile')
@include('layouts/profile')
@endsection
@section('side_bar')
@include('layouts/side_bar')
@endsection
@section('main_div')
Order Details
Order Id |
Email |
Total |
Created At |
Action |
@foreach($order_list as $order)
#{{$order['cart_total_id']}} |
{{$order['user_email']}} |
{{$order['total']}} |
{{$order['created_at']}} |
|
@endforeach
@include('layouts.cart')
@endsection