v2board/app/Http/Requests/Admin/ServerTrojanSort.php

29 lines
547 B
PHP
Raw Normal View History

2020-04-20 16:07:06 +08:00
<?php
namespace App\Http\Requests\Admin;
use Illuminate\Foundation\Http\FormRequest;
2020-06-11 20:47:02 +08:00
class ServerTrojanSort extends FormRequest
2020-04-20 16:07:06 +08:00
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'server_ids' => 'required|array'
];
}
public function messages()
{
return [
'server_ids.required' => '服务器ID不能为空',
'server_ids.array' => '服务器ID格式有误'
];
}
}