@include('alerts.success')
| Name |
products |
Total Stock |
Defective Stock |
Average Price of Product |
|
@foreach ($categories as $category)
| {{ $category->name }} |
{{ count($category->products) }} |
{{ $category->products->sum('stock') }} |
{{ $category->products->sum('stock_defective') }} |
{{ $category->products->avg('price') }} |
|
@endforeach