我有一个问题,无法按拉拉维尔(Laravel)分组。
这是mycode:
$testing = \DB::table(\DB::raw($query))
->where('total.content_file_download','not like','% %')
->where('total.updated_at','!=','0000-00-00 00:00:00')
->orderBy('total.updated_at','desc')->paginate(10)
->groupBy('month')->map(function ($group) {
return ["data" => $group ];
});
它返回得很好,直到我无法找到钥匙
我如何在键上给出一个数组名称,以便可以为它们
我想像这样使用foreach
<ion-grid *ngFor="let item of allgallery">
<ion-item>{{item}}</ion-item>
<ion-row>
<ion-col *ngFor="let element of item.data | slice:0:limit; let i=index">
<img [src]="'assets/img/no-img.jpg'" (click)="goView(element)"/>
</ion-col>
</ion-row>
</ion-grid>