33 lines
746 B
PHP
33 lines
746 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\TerminalResource\Pages;
|
|
|
|
use App\Filament\Resources\TerminalResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditTerminal extends EditRecord
|
|
{
|
|
protected static string $resource = TerminalResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\ViewAction::make()
|
|
->label('查看'),
|
|
Actions\DeleteAction::make()
|
|
->label('删除'),
|
|
];
|
|
}
|
|
|
|
protected function getRedirectUrl(): string
|
|
{
|
|
return $this->getResource()::getUrl('index');
|
|
}
|
|
|
|
protected function getSavedNotificationTitle(): ?string
|
|
{
|
|
return '终端更新成功';
|
|
}
|
|
}
|