@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')
Name |
Email |
Total |
Created At |
Action |
@foreach($order_list as $order)
{{$order['user_name']}} |
{{$order['user_email']}} |
{{$order['total']}} |
{{$order['created_at']}} |
|
|
@endforeach
@endsection