@extends('layouts.app') @section('title', $category->name.' — '.config('site.brand.name')) @section('content')
🌿

{{ $category->name }}

@if ($category->description)

{{ $category->description }}

@endif
@if ($products->isEmpty())

{{ __('site.products_empty') }}

@else
@foreach ($products as $product) @endforeach
{{ $products->links() }}
@endif
{{ __('site.btn_view_all_categories') }}
@endsection