All
@php
$categoriesData = [
'Rings' => 'gem',
'Wedding Band' => 'circle',
'Necklaces' => 'link',
'Earrings' => 'droplet',
'Bracelets' => 'circle-dashed'
];
@endphp
@foreach($categoriesData as $t => $icon)
{{ $t }}
@endforeach
{{ $products->total() }} Items
@include('partials.products-list')
@endsection