You've already forked Epicnabbo-Catalogus-Updated-Daily
22 lines
562 B
PHP
22 lines
562 B
PHP
<?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('/'),
|
|
];
|
|
}
|
|
}
|