@extends('common::prerender.base') @section('head') @include('seo.category-page.seo-tags') @endsection @section('body')

{{ $category->name }}

{!! $category->description !!}
@foreach ($category->sections as $section)

{{ $section['name'] }}

@endforeach
@if ($articles = $category->articles)
@foreach ($articles as $article)

{{ $article['title'] }}

@endforeach
@endif @endsection