@extends('layouts/frontend/master', ['activePage' => 'Post Category', 'page' => 'Categories', 'subActive' => '']) @section('seometa') {!! SEOMeta::generate() !!} {!! OpenGraph::generate() !!} {!! Twitter::generate() !!} {!! JsonLd::generate() !!} @endsection @section('content')
@if($category->posts->count() > 0) @foreach($category->posts as $post)

{{ $post->name ?? $post->title }}

  • {{ $post->created_at->format('M d, Y') }}
  • {{ $post->reading_time ?? '2 min' }}
@endforeach @else
No posts available in this category.
@endif

Explore expert insights and practical tips to help your brand shine across every channel.

@endsection