30 lines
528 B
PHP
30 lines
528 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Modules\Authentication\Http\Requests;
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
|
||
|
|
class RoleUpdateRequest extends FormRequest
|
||
|
|
{
|
||
|
|
public function authorize()
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function rules()
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'name' => 'required|string|max:255',
|
||
|
|
'description' => 'nullable|string|max:255',
|
||
|
|
'permissions' => 'required|array',
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
public function message(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
//
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|