2019-10-29 15:33:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Admin;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class UserUpdate extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'email' => 'required|email',
|
|
|
|
'transfer_enable' => 'numeric',
|
|
|
|
'expired_at' => 'integer',
|
|
|
|
'banned' => 'required|in:0,1',
|
2019-11-27 20:07:31 +08:00
|
|
|
'is_admin' => 'required|in:0,1',
|
|
|
|
'plan_id' => 'integer',
|
2019-12-17 15:55:38 +08:00
|
|
|
'commission_rate' => 'nullable|integer|min:0|max:100'
|
2019-10-29 15:33:36 +08:00
|
|
|
];
|
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
|
2019-10-29 15:33:36 +08:00
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'email.required' => '邮箱不能为空',
|
|
|
|
'email.email' => '邮箱格式不正确',
|
|
|
|
'transfer_enable.numeric' => '流量格式不正确',
|
|
|
|
'expired_at.integer' => '到期时间格式不正确',
|
|
|
|
'banned.required' => '是否封禁不能为空',
|
|
|
|
'banned.in' => '是否封禁格式不正确',
|
|
|
|
'is_admin.required' => '是否管理员不能为空',
|
2019-11-27 20:07:31 +08:00
|
|
|
'is_admin.in' => '是否管理员格式不正确',
|
|
|
|
'plan_id.integer' => '订阅计划格式不正确',
|
|
|
|
'commission_rate.integer' => '推荐返利比例格式不正确',
|
2019-12-17 15:52:19 +08:00
|
|
|
'commission_rate.nullable' => '推荐返利比例格式不正确',
|
2019-11-27 20:07:31 +08:00
|
|
|
'commission_rate.min' => '推荐返利比例最小为0',
|
|
|
|
'commission_rate.max' => '推荐返利比例最大为100'
|
2019-10-29 15:33:36 +08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|