@extends('frontend.layouts.app') @section('title', $category->seo_title) @section('description', $category->seo_description) @section('keywords', $category->seo_keywords) @if (!empty($category->image)) @section('image', $category->image) @endif @section('content') @include('frontend.common.header')

{{$category->title}}

@foreach ($contents as $content)
{{$content->title}}

{{$content->author ?? null}} / {{site_date_format($content->created_at)}}

{{$content->title}}

{{$content->short_text}}

@endforeach
@include('frontend.block.subscribe') @endsection