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

31 lines
735 B
PHP
Raw Normal View History

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 OrderSave extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'plan_id' => 'required',
2020-09-10 21:48:44 +08:00
'cycle' => 'required|in:month_price,quarter_price,half_year_price,year_price,two_year_price,three_year_price,onetime_price,reset_price'
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 [
2021-06-12 00:56:39 +08:00
'plan_id.required' => __('Plan ID cannot be empty'),
'cycle.required' => __('Plan cycle cannot be empty'),
'cycle.in' => __('Wrong plan cycle')
2019-10-29 15:33:36 +08:00
];
}
}