You've already forked Atomcms-edit
15 lines
318 B
PHP
Executable File
15 lines
318 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\RadioShouts\Pages;
|
|
|
|
use App\Filament\Resources\RadioShouts\RadioShoutResource;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
|
|
class ListRadioShouts extends ListRecords
|
|
{
|
|
#[\Override]
|
|
protected static string $resource = RadioShoutResource::class;
|
|
}
|