@extends('layouts.public') @section('title', $post->title . ' - ' . config('app.name')) @section('meta_description', $post->meta_description ?? Str::limit(strip_tags($post->content), 160)) @push('schema') @endpush @section('content') @if($post->category) {{ $post->category->name }} @endif
@if($post->featured_image)
{{ $post->title }}
@endif

{!! $post->content !!}
@endsection