I have an Eloquent model (Presenters) that has three columns: id, first_name and last_name. What I want to do is populate the select opti
id
first_name
last_name
Presenter::select('id', DB::raw('CONCAT(first_name, " ", last_name) AS full_name'))->lists('full_name', 'id');