Laravel收藏集团

时间:2017-07-27 19:32:29

标签: php laravel

我有一个搜索功能,可以按特定日期,月份,字符串等搜索费用。它返回一个集合:

enter image description here

到目前为止一切顺利。我可以显示所有返回的Expenses。现在,我想要做的是,还显示总费用和总金额,按description_id分组。如果我只是做$result->groupBy('description_id),我只会得到一组集合,我可以从中显示总计数和总金额,但不能显示描述的名称。我想要的例子:

Grouped Results (By Expense):

Description Name: <-- Issue displaying this
Total Expenses: 3
Total Amount: 53444

描述名称只能通过ExpenseDescription之间的关系获得。费用属于描述。

在使用我的集合时,是否可以实现我想要的,或者我应该对这些结果执行单独的查询? (不希望的)

1 个答案:

答案 0 :(得分:5)

如果您急切加载description,则可以通过集合的嵌套对象对生成的集合进行分组。所以你可能有:

$expenses = Expenses::with('description')->get(); //collection

然后将其分组:

$grouped = $expenses->groupBy('description.name'); 
//or
$grouped = $expenses->groupBy('description_id'); 

然后你可以使用描述名称,访问它,说我们需要第一组,以及组中的第一笔费用,

$description_name = $grouped
                    ->first() //the first group
                    ->first() //the first expense in group
                    ->description //the description object
                    ->name //the name

这只是一个小证明,您可以在集合中获取相关模型的名称,并使用它来解决您的问题。