@extends('site.layouts.app') @section('title', $category->name . ' | ' . config('site.name')) @section('description', Str::limit($category->description, 160)) @section('content')

{{ $category->name }}

@foreach($navCategories as $cat){{ $cat->name }}@endforeach

{{ $category->description }}

@forelse($products as $product) @include('site.partials.product-card', ['product' => $product]) @empty

لا توجد منتجات في هذا القسم حالياً.

@endforelse
{{ $products->links('site.partials.pagination') }}
@endsection