Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 10s
Gemini PR Review / review (pull_request) Failing after 1m21s
Laravel Larastan / larastan (pull_request) Failing after 3m8s
Laravel Pint / pint (pull_request) Successful in 2m32s
25 lines
582 B
PHP
25 lines
582 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\ProductCharacteristicsMasterResource\Pages;
|
|
|
|
use App\Filament\Resources\ProductCharacteristicsMasterResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\ViewRecord;
|
|
|
|
class ViewProductCharacteristicsMaster extends ViewRecord
|
|
{
|
|
protected static string $resource = ProductCharacteristicsMasterResource::class;
|
|
|
|
public function getTitle(): string
|
|
{
|
|
return 'View Characteristics';
|
|
}
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\EditAction::make(),
|
|
];
|
|
}
|
|
}
|