Update I try differente solution but it seem's the action CREATE() of the RESTfull controller can't accept parameters?
I must create another ACTION on this controller? Is possible? How to use?
You can add parameter to your create route
add get parameter to view .../create?parameter_name=parameter_value
retrieve get parameter in you view and put in in your input value, <input type="number" id="id_anggota" name="id_anggota" value="{{ Request::input('parameter_name') }}" hidden>
then you can retrieve them in store function in your controller $value = $request->parameter_name
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community