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

Dashboard

{{$total_order}}

Total Oreder

{{$today_order}}

Today's Order

{{$total_product}}

Products

{{$total_customer}}

Customer

Latest 5 Orders

@foreach($latest_order as $order) @endforeach
Id Invoice Amount Customer Status
{{$loop->iteration}} contact-img {{$order->invoice_id}} {{$order->amount}} {{$order->customer?$order->customer->name:''}} {{$order->order_status}}

Latest Customers

@foreach($latest_customer as $customer) @endforeach
Id Name Phone Date Status
{{$loop->iteration}}
{{$customer->name}} {{$customer->phone}} {{$customer->created_at->format('d-m-Y')}} {{$customer->status}}
modernize-img
Welcome {{Auth::user()->name}}

{{ $today_order_amount }} TK.

Today’s Sales

{{ $today_order }}

Order Today

modernize-img

{{ number_format($expenseData['amounts']->sum(), 2) }} TK.

Expense (Last 3 Months)

Overview

Web Order Report

Order Source

Employee Report

Order Counts

Orders created vs order send to courier

Order Created

Sent to Courier

Hot Sale Product Performances

What Impacts Product Performance?

Product Name Quantity Number of Orders % of Sales Total Revenue
@endsection @section('script') @endsection