php 如何在Laravel Eloquent模型中访问属性

nx7onnlm  于 2023-09-29  发布在  PHP
关注(0)|答案(2)|浏览(120)

我有这段代码我在这里得到了我想要的一切,但所有的东西都转到了属性,但我不知道我如何在这些数组的属性中访问我的reportItems?

$reportsGrouped = collect($pharmacy->pharmacyReportIndetificator->reportItem->map(function($item){    
            return $item->report;
        }))->unique('report_id')->map(function($report) use($pharmacy) {
            $reportItems = ReportItem::where(['report_id' => $report->report_id, 'report_pharmacy_pib_code' => $pharmacy->pharmacyReportIndetificator->pharmacy_pib])->get();
            $reportItemsSum = $reportItems->sum('report_product_sum');

            $report->reportItemsSum = $reportItemsSum;
            $report->reportItems = $reportItems;

            return $report;
        })->sortBy('report_date')->groupBy('report_date');
ac1kyiln

ac1kyiln1#

你有物品的集合。
您可以循环查询返回的集合并访问任何属性。
以下是您可以在刀片式服务器中使用的代码:

@foreach($items as $item)  
 @foreach($item->reportItems as $reportItem) 
  {{ $reportItem->somePropertyPfReportItem }}  
 @endforeach 
@endforeach
cedebl8k

cedebl8k2#

如果结果中有一条记录用于访问您项目,您可以使用以下命令:

$value->first()->reportItem

相关问题