support clash x

This commit is contained in:
root
2019-11-18 18:19:28 +08:00
parent 680f2cc052
commit 0fad30cacb
3 changed files with 51 additions and 1 deletions

View File

@ -0,0 +1,28 @@
<?php
namespace App\Http\Requests\Admin;
use Illuminate\Foundation\Http\FormRequest;
class ServerUpdate extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'show' => 'in:0,1'
];
}
public function messages()
{
return [
'show.in' => '显示状态格式不正确'
];
}
}