mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
30 lines
575 B
PHP
30 lines
575 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\Admin;
|
||
|
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
||
|
class KnowledgeCategorySave extends FormRequest
|
||
|
{
|
||
|
/**
|
||
|
* Get the validation rules that apply to the request.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function rules()
|
||
|
{
|
||
|
return [
|
||
|
'name' => 'required',
|
||
|
'language' => 'required'
|
||
|
];
|
||
|
}
|
||
|
|
||
|
public function messages()
|
||
|
{
|
||
|
return [
|
||
|
'name.required' => '分类名称不能为空',
|
||
|
'language.required' => '分类语言不能为空'
|
||
|
];
|
||
|
}
|
||
|
}
|