[Vuejs]-How to store array of objects in laravel

0👍

When you submit the form you can pass the named value as lower_bound and upper_bound but in the controller you can access input thats why you $json variable show null value. You can use name as array name="lower_bound[]" same as upper_bound and in the controller you cam access the value simple by index number $json = $request->lower_bound[0];

Leave a comment