Basic PHP I guess ?
$Aagents=array();
foreach($agents as $agent)
{
$agents[$agent->index] = $agent->first_name." ".$agent->last_name;
}
$agents = Agent::lists($value, $key);
// view
{{ Form::select('agent_id', $agents) }}
Not quite what pogachar said. If you already have a collection, just do the following:
{{ Form::select('agent_id', $agents->lists('id', 'first_name');
Or, if you need the full name - write a getter on the model that retrieves them both as name(), then you can use name as the last argument in the lists() call.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community