Preview: RoleUpdateRequest.php
Size: 631 B
/home/byroehnu/cnggold.com.ng/app/Http/Requests/Backend/RoleUpdateRequest.php
<?php
namespace App\Http\Requests\Backend;
use Illuminate\Foundation\Http\FormRequest;
class RoleUpdateRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array|string>
*/
public function rules(): array
{
return [
'title' => 'required|max:255',
'description' => 'required|max:255',
];
}
}
Directory Contents
Dirs: 0 × Files: 6