mirror of
https://github.com/v2board/v2board.git
synced 2024-11-11 01:59:12 +08:00
29 lines
541 B
PHP
29 lines
541 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\Admin;
|
||
|
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
||
|
class ServerSort extends FormRequest
|
||
|
{
|
||
|
/**
|
||
|
* 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格式有误'
|
||
|
];
|
||
|
}
|
||
|
}
|