I am using $request->usertype or $request->input('usertype') in my controller to try to get selected value in view
They give me $type->id rather than the selected value from my view
$type->type...how can I get that ....
Please do not suggest me $valTypes = Input::get('usertype'); it gives Input not found even after I added use App\Http\Controllers\Input in my controller
This still gives me value of $type ->id rather than $type->type.
You can try on your own and see ....
Let me know if you have any solution to get the selected value from the select box.