@php($seoHead = $category->seo_head) @extends('layouts.app') @section('content')

{{ $category->name }}

@if($category->description)

{{ $category->description }}

@endif
@foreach($posts as $post) @if($post->featured_image_path) {{ $post->title }} @endif

{{ $post->title }}

{!! \Illuminate\Support\Str::limit(strip_tags($post->excerpt ?: $post->content), 140) !!}
@endforeach
{{ $posts->links() }}
@endsection