Hey guys, im running the following Query: $user = User::where('active', '=', '1')->get();
Then in my blade template i use: {{ Form::select('product_id', $users, null, array('class' => 'form-control')) }}
This will put in all database values. How can i say that the value is the id and the text of the option is Username like:
<option value="user_id'>Donny5300</option>You could just use:
$user = User::lists('name','id');
Then in your view
{{ Form::select('name', $user, null, ['class' => 'form-hoirzontal']) }}
What if i want the option be like
<option value="user_id'>Username here, date of birth here</option>Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community