Support the ongoing development of Laravel.io →
Database Eloquent
Last updated 1 year ago.
0

I don't think there's such a function. But doing it manually isn't hard, and will only require one query, same as lists function.

$list = [];
Model::select('id', 'name', 'description')->get()->map(function($item) use(&$list) {
    $list[$item['id']] = $item['name'].' - '.$item['description'];
});
0

Another option would be using a raw query http://laravel.com/docs/4.2/queries#raw-expressions

Model::selectRaw("concat(name, ' - ', description) as name, id")->lists('id','name');

Last updated 8 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.