mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
update tutorial
This commit is contained in:
parent
0a2c626f89
commit
a56faa7e8e
@ -6,6 +6,12 @@ use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class TutorialSave extends FormRequest
|
||||
{
|
||||
CONST RULES = [
|
||||
'title' => 'required',
|
||||
'category' => 'required|in:windows,macos,ios,android,linux,router',
|
||||
'description' => 'required',
|
||||
'icon' => 'required'
|
||||
];
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
@ -13,17 +19,15 @@ class TutorialSave extends FormRequest
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
'title' => 'required',
|
||||
'description' => 'required',
|
||||
'icon' => 'required'
|
||||
];
|
||||
return self::RULES;
|
||||
}
|
||||
|
||||
public function messages()
|
||||
{
|
||||
return [
|
||||
'title.required' => '标题不能为空',
|
||||
'category.required' => '分类不能为空',
|
||||
'category.in' => '分类格式不正确',
|
||||
'description.required' => '描述不能为空',
|
||||
'icon.required' => '图标不能为空'
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user