Files
alrahma_sunday_school_api/app/Http/Requests/Grading/HomeworkTrackingRequest.php
T
2026-03-09 02:52:13 -04:00

23 lines
467 B
PHP

<?php
namespace App\Http\Requests\Grading;
use App\Http\Requests\ApiFormRequest;
class HomeworkTrackingRequest extends ApiFormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'semester' => ['nullable', 'string', 'max:50'],
'school_year' => ['nullable', 'string', 'max:50'],
'page' => ['nullable', 'integer', 'min:1'],
];
}
}