mirror of
https://github.com/v2board/v2board.git
synced 2025-01-11 08:39:09 +08:00
40 lines
1.1 KiB
PHP
Executable File
40 lines
1.1 KiB
PHP
Executable File
<?php
|
||
|
||
namespace App\Http\Requests\Admin;
|
||
|
||
use Illuminate\Foundation\Http\FormRequest;
|
||
|
||
class PlanSave extends FormRequest
|
||
{
|
||
/**
|
||
* Get the validation rules that apply to the request.
|
||
*
|
||
* @return array
|
||
*/
|
||
public function rules()
|
||
{
|
||
return [
|
||
'name' => 'required',
|
||
'group_id' => 'required',
|
||
'transfer_enable' => 'required',
|
||
'month_price' => 'nullable|numeric',
|
||
'quarter_price' => 'nullable|numeric',
|
||
'half_year_price' => 'nullable|numeric',
|
||
'year_price' => 'nullable|numeric'
|
||
];
|
||
}
|
||
|
||
public function messages()
|
||
{
|
||
return [
|
||
'name.required' => '套餐名称不能为空',
|
||
'group_id.required' => '权限组不能为空',
|
||
'transfer_enable.required' => '流量不能为空',
|
||
'month_price.numeric' => '月付金额格式有误',
|
||
'quarter_price.numeric' => '季付金额格式有误',
|
||
'half_year_price.numeric' => '半年付金额格式有误',
|
||
'year_price.numeric' => '年付金额格式有误'
|
||
];
|
||
}
|
||
}
|