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

Orders

Total Orders: {{ $cart_total->count() }}

@endsection @section('side_bar') @include('layouts/side_bar'); @endsection @section('profile') @include('layouts/profile'); @endsection @section('main_div')
@foreach($order_list as $order) @endforeach
Name Email Total Created At Action
{{$order['user_name']}} {{$order['user_email']}} {{$order['total']}} {{$order['created_at']}} |
@endsection