43 lines
871 B
PHP
43 lines
871 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Admin;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class DocumentationArticleRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return auth()->check() && auth()->user()->isAdmin();
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'title' => [
|
|
'required',
|
|
'string',
|
|
'max:255'
|
|
],
|
|
'content' => [
|
|
'required',
|
|
'min:2'
|
|
],
|
|
'category_id' => [
|
|
'required',
|
|
'exists:documentation_categories,id'
|
|
]
|
|
];
|
|
}
|
|
}
|