2020-01-02 21:38:32 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Admin;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
2020-10-18 02:51:32 +08:00
|
|
|
class KnowledgeSave extends FormRequest
|
2020-01-02 21:38:32 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-07-15 15:57:12 +08:00
|
|
|
return [
|
2020-10-18 02:51:32 +08:00
|
|
|
'category' => 'required',
|
|
|
|
'language' => 'required',
|
2020-07-15 15:57:12 +08:00
|
|
|
'title' => 'required',
|
2020-10-18 02:51:32 +08:00
|
|
|
'body' => 'required'
|
2020-07-15 15:57:12 +08:00
|
|
|
];
|
2020-01-02 21:38:32 +08:00
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
|
2020-01-02 21:38:32 +08:00
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'title.required' => '标题不能为空',
|
2020-10-18 02:51:32 +08:00
|
|
|
'category.required' => '分类不能为空',
|
|
|
|
'body.required' => '内容不能为空',
|
|
|
|
'language.required' => '语言不能为空'
|
2020-01-02 21:38:32 +08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|