Added sticker mapping master resource pages
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 13s
Gemini PR Review / Gemini PR Review (pull_request) Successful in 18s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 10s
Laravel Pint / pint (pull_request) Failing after 2m7s
Laravel Larastan / larastan (pull_request) Failing after 2m10s

This commit is contained in:
dhanabalan
2025-12-30 14:10:21 +05:30
parent 7cab79c7e0
commit 7e45c611a0
5 changed files with 550 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Filament\Resources\StickerMappingMasterResource\Pages;
use App\Filament\Resources\StickerMappingMasterResource;
use Filament\Actions;
use Filament\Resources\Pages\ViewRecord;
class ViewStickerMappingMaster extends ViewRecord
{
protected static string $resource = StickerMappingMasterResource::class;
protected function getHeaderActions(): array
{
return [
Actions\EditAction::make(),
];
}
}