@extends('layouts.main')
@push('nav_title')
Dashboard
@endpush
@section('page_title')
@endsection
@section('side_bar')
@include('layouts/side_bar')
@endsection
@section('profile')
@include('layouts/profile')
@endsection
@section('main_div')
Name |
Email |
Total |
Created At |
@foreach(array_slice($order_list, 0, 3) as $order)
{{$order['user_name']}} |
{{$order['user_email']}} |
{{$order['total']}} |
{{$order['created_at']}} |
@endforeach
@endsection