@extends('layouts.site') @section('title', $category->name.' โ€” Blog โ€” pcfy.in') @section('screen_label', 'Blog category') @push('styles') @endpush @section('content')
Category

{{ $category->name }}

@if($category->description)

{{ $category->description }}

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

No posts in this category yet.

View all posts โ†’
@else
@foreach($posts as $post)
@if($post->getFirstMediaUrl('featured')) {{ $post->title }} @else
@endif
{{ $post->title }} @if($post->excerpt)

{{ Str::limit($post->excerpt, 100) }}

@endif
@endforeach
@if($posts->hasPages())
{{ $posts->links() }}
@endif @endif
@endsection