@extends('layouts.main-app') @section('title') @section('content') @include('layouts.navbar');
blog topics banner

{{ strtoupper($category->name) }}

HOME/ {{ strtoupper($category->name) }}

product mesh background
@forelse ($products as $product)
{!! $product->name !!}
@if (is_countable($category->items) && count($category->items) > 3)
@foreach ($category->items as $item)
{!! $item !!}
@endforeach
@else
{!! $category->items !!}
@endif
@empty

No products found in this category.

@endforelse
@include('layouts.footer') @endsection