Files
qds/app/Filament/Resources/EmployeeMasterResource/Pages/CreateEmployeeMaster.php
dhanabalan 8d397f11e1
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Added employee master resource pages
2026-05-25 15:40:48 +05:30

13 lines
311 B
PHP

<?php
namespace App\Filament\Resources\EmployeeMasterResource\Pages;
use App\Filament\Resources\EmployeeMasterResource;
use Filament\Actions;
use Filament\Resources\Pages\CreateRecord;
class CreateEmployeeMaster extends CreateRecord
{
protected static string $resource = EmployeeMasterResource::class;
}