2019-10-29 15:33:36 +08:00
|
|
|
<?php
|
|
|
|
|
2020-01-29 16:22:39 +08:00
|
|
|
namespace App\Http\Requests\User;
|
2019-10-29 15:33:36 +08:00
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class UserUpdate extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'remind_expire' => 'in:0,1',
|
|
|
|
'remind_traffic' => 'in:0,1'
|
|
|
|
];
|
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
|
2019-10-29 15:33:36 +08:00
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
2021-06-12 00:56:39 +08:00
|
|
|
'show.in' => __('Incorrect format of expiration reminder'),
|
|
|
|
'renew.in' => __('Incorrect traffic alert format')
|
2019-10-29 15:33:36 +08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|