Fixed widgets on admin view

This commit is contained in:
Anna-Sara Sélea 2025-11-01 18:30:05 +01:00
parent 6818f1c514
commit 7ace7e13e3

View file

@ -28,7 +28,7 @@ class PopularCategoryChart extends ChartWidget
{ {
$categories = Category::where('type', 'game')->get()->sortBy('id')->pluck('name'); $categories = Category::where('type', 'game')->get()->sortBy('id')->pluck('name');
$items = Reserveditem::withTrashed()->with('item')->get()->groupBy('item.category_id')->sortByDesc('item.category_id'); $items = Reserveditem::withTrashed()->with('item')->get()->groupBy('item.category_id')->sortBy('item.category_id', true);
$itemCategoriesCount = []; $itemCategoriesCount = [];
foreach ($items as $item){ foreach ($items as $item){