🆙 More fixes 🆙

This commit is contained in:
Remco
2026-01-20 19:44:22 +01:00
parent a71a634dee
commit eb55c3ab68
10 changed files with 67 additions and 54 deletions
@@ -0,0 +1,21 @@
<?php
namespace App\Filament\Resources\Atom;
use App\Filament\Resources\Atom\WriteableBoxResource\Pages\ManageWriteableBoxes;
use Filament\Resources\Resource;
class WriteableBoxResource extends Resource
{
// Placeholder model to satisfy PHPStan. This feature seems incomplete/missing.
protected static ?string $model = \App\Models\User::class;
protected static bool $shouldRegisterNavigation = false;
public static function getPages(): array
{
return [
'index' => ManageWriteableBoxes::route('/'),
];
}
}