Laravel - Populating Select List with Derived Values

后端 未结 2 1631
梦如初夏
梦如初夏 2021-01-28 12:46

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

2条回答
  •  余生分开走
    2021-01-28 13:45

    Presenter::select('id', DB::raw('CONCAT(first_name, " ", last_name) AS full_name'))->lists('full_name', 'id');
    

提交回复
热议问题