<?php
namespace App\Filament\Pages;
use Filament\Pages\Dashboard as BaseDashboard;
class Dashboard extends BaseDashboard
{
protected static ?string $navigationLabel = 'Dashboard';
/**
* @return int | string | array<string, int | string | null>
*/
public function getColumns(): int | string | array
{
return 3;
}
}