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

31 lines
740 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',
2021-12-28 01:49:33 +08:00
'period' => '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'),
2021-12-28 01:49:33 +08:00
'period.required' => __('Plan period cannot be empty'),
'period.in' => __('Wrong plan period')
2019-10-29 15:33:36 +08:00
];
}
}