@extends('frontend.layouts.app') @section('title', $category->meta_title ?: $category->name . ' — BrigataFolgore.net') @section('description', $category->meta_description ?: $category->description) @section('content')

{{ __t('category.label', 'Categoria') }}

{{ $category->name }}

@if($category->description)

{{ $category->description }}

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

{{ __t('category.no_articles', 'Nessun articolo in questa categoria.') }}

@else
@foreach($articles as $article) @endforeach
{{ $articles->links() }}
@endif
@endsection