Build & Deploy / build (push) Successful in 18s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
263 B
PHP
12 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Programs\Pages;
|
|
|
|
use App\Filament\Resources\Programs\ProgramResource;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateProgram extends CreateRecord
|
|
{
|
|
protected static string $resource = ProgramResource::class;
|
|
}
|