You've already forked Atomcms-edit
Initial commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Filament\Resources\RadioApplications\Pages;
|
||||
|
||||
use App\Filament\Resources\RadioApplications\RadioApplicationResource;
|
||||
use Filament\Resources\Pages\EditRecord;
|
||||
|
||||
class EditRadioApplication extends EditRecord
|
||||
{
|
||||
#[\Override]
|
||||
protected static string $resource = RadioApplicationResource::class;
|
||||
|
||||
#[\Override]
|
||||
protected function getHeaderActions(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Filament\Resources\RadioApplications\Pages;
|
||||
|
||||
use App\Filament\Resources\RadioApplications\RadioApplicationResource;
|
||||
use Filament\Resources\Pages\ListRecords;
|
||||
|
||||
class ListRadioApplications extends ListRecords
|
||||
{
|
||||
#[\Override]
|
||||
protected static string $resource = RadioApplicationResource::class;
|
||||
|
||||
#[\Override]
|
||||
protected function getHeaderActions(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user