<?php namespace App\Http\Requests; class InquirySave extends BaseRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'items' => 'required', 'items.*.goods_name' => 'required|string|max:100', 'items.*.brand_name' => 'required|string|max:100', 'items.*.inquiry_number' => 'required|integer', 'remark' => 'max:255|required', ]; } }