@extends('layouts.shop_dashboard') @section('items_in_shop')

{{ $category_name }}

@if($items->count() > 0) @foreach($items->chunk(2) as $chunk)
@foreach($chunk as $item)
@includeWhen($item->item, 'itemshop.item', ['item' => $item])
@endforeach
@endforeach @else There is nothing to show here. @endif @endsection