add school year model
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests\SchoolYears;
|
||||
|
||||
class CloseSchoolYearRequest extends PreviewCloseSchoolYearRequest
|
||||
{
|
||||
public function rules(): array
|
||||
{
|
||||
return array_merge(parent::rules(), [
|
||||
'confirmation' => ['required', 'string', 'max:80'],
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user