19 lines
387 B
PHP
19 lines
387 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class CreateGroupRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool { return true; }
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'size_target' => ['required','integer','in:2,3,4'],
|
|
'group_name' => ['nullable','string','max:120'],
|
|
];
|
|
}
|
|
}
|