问题标签 [laravel-collection]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
mysql - 如何在 laravel 集合中添加额外的元素
我想知道如何在 laravel 集合中添加额外的列,从数据库返回。例如。
用户模型 User->id User->name
预留模型预留->user_id 预留->id
现在
php - Laravel 在另一个迭代器中访问集合元素
我有 db 表LovColumnComments
,它包含:
我有另一个DataTable
包含实际数据的表。
这两个表都作为集合传递给刀片视图。
我现在拥有的刀片模板是:
我想知道我是否可以访问$data
集合而不是使用$datum['object_id']
and $datum['description']
。这是因为,DataTable
可以是任何数据库表,因此字段名称可以不同,但总是会有两列。
因此,$data
集合总是有两列,但列名可以不同。$columns
我需要一种更动态的方式来从集合中获取列名。
类似的东西,<td>{{$columns[0]}}</td>
和<td>{{$columns[1]}}</td>
仅供参考,column
of$columns
包含实际名称(即object_id
和description
)
谢谢
php - Get commentable class attributes using Baum in Laravel
I am using Laravel Commentable that uses Baum
Post Model
My user model name is User
Comment table structure:
The user_id
stores the user id of the user who commented, commentable_id
stores the post id of the post where the comment was placed.
The Comments are working as expected.
I am able to insert comments, delete comments.
To display the comments:
$comments = Comment::orderBy('id', 'desc')->get();
This gives me the name and the comment by the user in the view.
Question: How to get the post model attributes from a comment?
{{ $comment->post->slug }}
<-this doesn't works
php - Laravel 'find' 方法返回什么
一个简单的 MySQL 表即centers
作为Center
其模型和code
列之一。
令我惊讶的是,两种方法都可以找出code
和 显示的类型object
。
所以 1) 的返回类型是find
什么?
2) 除非不存在匹配结果,否则返回类型是否会发生变化?
php - Laravel 集合。将一个键映射到另一个
我想将 Laravel 集合中的一些键映射到其他存储在数组中的键。
我不能为这样的转变“发明”一个合适的、简洁的管道。
这是我想要的一个简化示例:
php - Transform collective to array in Laravel, Laravel 5
How can I transform this collection to array and eject "whereNotIn" using a Laravel query, like this:
json - 如何将 Laravel 集合数组转换为 json
如何将此 Laravel 集合数组转换为 json 格式,如下所示。
很抱歉这个基本问题,但我无法将它转换成这个 jso。
php - 从 Laravel 集合中提取属性数组
我正在使用 Laravel 5.3,并且我有一个格式如下的集合:
我需要提取所有 sub_categories 数组,但我找不到访问该属性内数据的方法。根据$categories
收藏,我期望用这种格式创建一个新的:
我尝试过应用map和pluck,但它检索到一个填充有null$categories
的数组。