class ReportsOverview extends BaseWidget
{
protected static ?string $pollingInterval = null;
protected function getStats(): array
{
return [
Stat::make('Total', CustomerDepositsReport::sum('amount_paid'));
];
}
class ReportsOverview extends BaseWidget
{
protected static ?string $pollingInterval = null;
protected function getStats(): array
{
return [
Stat::make('Total', CustomerDepositsReport::sum('amount_paid'));
];
}