gpt4 book ai didi

laravel - 将 eloquent 集合到自定义数组的最佳方法

转载 作者:行者123 更新时间:2023-12-04 10:01:01 24 4
gpt4 key购买 nike

最好的制作方法是什么Object::all()array('object_id', 'object_name') ?
我需要一个很好的代码来为 SELECT 使用 eloquent 集合:{{ Form:select('objects', $custom_array) }} . for 循环是唯一的方法吗?

最佳答案

我认为您正在寻找 toArray() :

User::all()->toArray();

http://four.laravel.com/docs/eloquent#converting-to-arrays-or-json

获取可以直接与 Form::select()一起使用的数组,您可以使用以下内容:
$contacts = Contact::orderBy('name')->lists('name', 'id');
$contacts = count($contacts) > 0 ? $contacts : array();

{{ Form::select('contact', $contacts) }}

关于laravel - 将 eloquent 集合到自定义数组的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16523323/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com