@extends('backEnd.layouts.master') @section('title', 'Dashboard') @section('css') @endsection @section('content')

Dashboard

{{-- Real-time store performance --}}
@include('backEnd.admin.dashboard-body')
{{--
Recent Order Stream
@foreach ($latest_order as $order) @endforeach
Order ID Customer Entity Total Bill Payment Status Timestamp Actions
#{{$order->invoice_id}}
{{ substr($order->customer ? $order->customer->name : 'G', 0, 1) }}
{{$order->customer ? $order->customer->name : 'Guest User'}}
৳{{number_format($order->amount)}} {{$order->order_status}} {{$order->created_at->format('M d, g:i A')}}
--}}
@endsection