@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

@foreach($order_list as $order) @endforeach
Order Id Email Total Created At Action
#{{$order['cart_total_id']}} {{$order['user_email']}} {{$order['total']}} {{$order['created_at']}}
@include('layouts.cart')
@endsection