12 lines
318 B
PHP
12 lines
318 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\DisciplinaryReports\Pages;
|
|
|
|
use App\Filament\Resources\DisciplinaryReports\DisciplinaryReportResource;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateDisciplinaryReport extends CreateRecord
|
|
{
|
|
protected static string $resource = DisciplinaryReportResource::class;
|
|
}
|