v2board/app/Http/Requests/User/TicketWithdraw.php

30 lines
641 B
PHP
Raw Normal View History

2020-05-10 18:38:02 +08:00
<?php
namespace App\Http\Requests\User;
use Illuminate\Foundation\Http\FormRequest;
class TicketWithdraw extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2021-01-08 00:33:11 +08:00
'withdraw_method' => 'required',
2020-05-10 18:38:02 +08:00
'withdraw_account' => 'required'
];
}
public function messages()
{
return [
2021-06-12 00:56:39 +08:00
'withdraw_method.required' => __('The withdrawal method cannot be empty'),
'withdraw_account.required' => __('The withdrawal account cannot be empty')
2020-05-10 18:38:02 +08:00
];
}
}