23 lines
467 B
PHP
23 lines
467 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Requests\Attendance;
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
|
||
|
|
class MonthlyStatsRequest extends FormRequest
|
||
|
|
{
|
||
|
|
public function authorize(): bool
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function rules(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'year' => 'nullable|integer|min:2000|max:2100',
|
||
|
|
'month' => 'nullable|integer|min:1|max:12',
|
||
|
|
'user_id' => 'nullable|integer|exists:users,id',
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|