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