{{--
@if ($category->posts->count() > 0)

{{ $category->name }}

@foreach ($category->posts as $post) @if ($post->status == 1)
@endif @endforeach
@else

No posts available at the moment.

@endif --}}

{{ $category->name }}

{{ $category->description }}

@foreach ($category->posts as $post) @if ($post->status == 1)
{{$post?->media->alt}}

{{ date('d M, Y ', strtotime($post?->published_on)) }}

{{$post?->name}}

{!! tiptap_converter()->asHTML(\Illuminate\Support\Str::limit($post?->sub_description, 60) )!!}

Learn More
@endif @endforeach