Initial commit
This commit is contained in:
26
app/Filament/Resources/Sizes/Pages/EditSize.php
Normal file
26
app/Filament/Resources/Sizes/Pages/EditSize.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Filament\Resources\Sizes\Pages;
|
||||
|
||||
use App\Filament\Resources\Sizes\SizeResource;
|
||||
use Filament\Actions\DeleteAction;
|
||||
use Filament\Actions\ViewAction;
|
||||
use Filament\Resources\Pages\EditRecord;
|
||||
|
||||
class EditSize extends EditRecord
|
||||
{
|
||||
protected static string $resource = SizeResource::class;
|
||||
|
||||
public function mount($record = null): void
|
||||
{
|
||||
$record = $record ?? 1;
|
||||
parent::mount($record);
|
||||
}
|
||||
|
||||
protected function getHeaderActions(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user