feature: knowledge base & surplus switch

This commit is contained in:
Tokumeikoi
2020-10-18 02:51:32 +08:00
parent be3e808551
commit 9041ee2a37
16 changed files with 274 additions and 213 deletions

View File

@ -0,0 +1,28 @@
<?php
namespace App\Http\Requests\Admin;
use Illuminate\Foundation\Http\FormRequest;
class KnowledgeSort extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'knowledge_ids' => 'required|array'
];
}
public function messages()
{
return [
'knowledge_ids.required' => '知识ID不能为空',
'knowledge_ids.array' => '知识ID格式有误'
];
}
}