@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Overview

Total Customers

{{ number_format($totalCustomers) }}

Total Invoices

{{ number_format($totalInvoices) }}

Today's Invoices

{{ number_format($todayInvoices) }}

Total Sales

₹{{ number_format($totalSales, 2) }}

Revenue Analytics
Invoice Trends
Recent Customers
View All
@forelse($recentCustomers as $customer) @empty @endforelse
Customer Mobile City
{{ $customer->customer_name }} {{ $customer->mobile }} {{ $customer->city ?? '-' }}
No recent customers.
Recent Invoices
View All
@forelse($recentInvoices as $invoice) @empty @endforelse
Invoice No Customer Amount
{{ $invoice->invoice_no }} {{ $invoice->customer->customer_name }} ₹{{ number_format($invoice->grand_total, 2) }}
No recent invoices.
@endsection @push('scripts') @endpush