{{ $category->name }}

{!! $category->description !!}
@foreach ($categories as $ccategory) id == $ccategory->id) class="font-bold" @endif> {{ $ccategory->name }} @endforeach
@if (count($childCategories) >= 1)
@foreach ($childCategories as $childCategory)
@if(theme('small_images', false))
@endif @if ($childCategory->image) {{ $childCategory->name }} @endif

{{ $childCategory->name }}

@if(theme('small_images', false))
@endif @if(theme('show_category_description', true))
{!! $childCategory->description !!}
@endif {{ __('common.button.view') }}
@endforeach
@endif
@foreach ($products as $product)
@if(theme('small_images', false))
@endif @if ($product->image) {{ $product->name }} @endif

{{ $product->name }}

@if(theme('small_images', false))
@endif @if(theme('direct_checkout', false) && $product->description)
{!! $product->description !!}
@endif

{{ $product->price()->formatted->price }}

@if($product->stock !== 0 && $product->price()->available && theme('direct_checkout', false)) {{ __('product.add_to_cart') }} @else {{ __('common.button.view') }} @if ($product->stock !== 0 && $product->price()->available) @endif @endif
@endforeach