@extends('layouts.app') @section('title', 'Dashboard') @section('page-title', 'Dashboard') @section('breadcrumbs') @endsection @section('content')

{{ number_format($totalCustomers) }}

Total Customers

More info

{{ number_format($totalServices) }}

Total Services

More info

{{ number_format($totalInvoices) }}

Total Invoices

More info

${{ number_format($totalIncome, 2) }}

Total Income

 

${{ number_format($totalExpenses, 2) }}

Total Expenses

Accounting module — coming next

${{ number_format($todaysPayments, 2) }}

Today's Payments

 

{{ now()->format('d M') }}

{{ now()->format('l, Y') }}

 

Monthly Revenue (last 12 months)

Recent Activities

    @forelse ($recentActivities as $invoice)
  • {{ $invoice->invoice_number }}
    {{ $invoice->customer->name ?? 'Unknown customer' }} · {{ $invoice->created_at->diffForHumans() }}
    {{ ucfirst($invoice->status) }}
  • @empty
  • No activity yet.
  • @endforelse
@endsection @push('scripts') @endpush