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

22 lines
424 B
PHP

<?php
namespace App\Http\Requests\Incidents;
use App\Http\Requests\ApiFormRequest;
class IncidentCloseRequest extends ApiFormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'state_description' => ['required', 'string', 'max:2000'],
'action_taken' => ['nullable', 'string', 'max:2000'],
];
}
}