Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Failing after 19s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 15s
Laravel Pint / pint (pull_request) Successful in 2m18s
Laravel Larastan / larastan (pull_request) Failing after 3m32s
20 lines
463 B
PHP
20 lines
463 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\RequestCharacteristicResource\Pages;
|
|
|
|
use App\Filament\Resources\RequestCharacteristicResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\ViewRecord;
|
|
|
|
class ViewRequestCharacteristic extends ViewRecord
|
|
{
|
|
protected static string $resource = RequestCharacteristicResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\EditAction::make(),
|
|
];
|
|
}
|
|
}
|