We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 083b45c commit ca6bad1Copy full SHA for ca6bad1
1 file changed
app/Filament/App/Pages/Dashboard.php
@@ -4,6 +4,18 @@
4
5
use Filament\Pages\Dashboard as BaseDashboard;
6
use Filament\Widgets\StatsOverviewWidget\Stat;
7
+use UnitEnum;
8
+use BackedEnum;
9
+
10
+class FamilyEventResource extends Resource
11
+{
12
+ protected static ?string $model = FamilyEvent::class;
13
14
+ protected static ?string $navigationLabel = 'Family Events';
15
16
+ protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
17
18
+ protected static string | UnitEnum | null $navigationGroup = 'Family';
19
20
class Dashboard extends BaseDashboard
21
{
@@ -28,4 +40,4 @@ public function getColumns(): int | string | array
28
40
'xl' => 3,
29
41
];
30
42
}
31
-}
43
+}
0 commit comments