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

Dashboard

Overview of your business operations

Active Customers

{{ $stats['active_customers'] ?? 0 }}

Pending Approvals

{{ $stats['pending_approvals'] ?? 0 }}

Active Orders

{{ $stats['active_orders'] ?? 0 }}

Total Revenue

{{ number_format($stats['total_revenue'] ?? 0, 2) }}

Recent Activity
@forelse($recentActivities ?? [] as $activity)

{{ $activity['description'] }}

{{ $activity['time'] }}
@empty

No recent activity

@endforelse
@endsection