12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Http\Requests\Admin;
- use Illuminate\Foundation\Http\FormRequest;
- class PlanSort extends FormRequest
- {
- /**
- * Get the validation rules that apply to the request.
- *
- * @return array
- */
- public function rules()
- {
- return [
- 'plan_ids' => 'required|array'
- ];
- }
- public function messages()
- {
- return [
- 'plan_ids.required' => '订阅计划ID不能为空',
- 'plan_ids.array' => '订阅计划ID格式有误'
- ];
- }
- }
|