refactor: migrate career applications to separate job and intern Filament resources

This commit is contained in:
Ümit Tunç
2026-06-08 18:17:56 +03:00
parent 5b07f385b1
commit 082fb33af3
17 changed files with 773 additions and 224 deletions
@@ -0,0 +1,11 @@
<?php
namespace App\Filament\Admin\Resources\InternApplications\Pages;
use App\Filament\Admin\Resources\InternApplications\InternApplicationResource;
use Filament\Resources\Pages\CreateRecord;
class CreateInternApplication extends CreateRecord
{
protected static string $resource = InternApplicationResource::class;
}