@extends('layouts.app') @section('title', $post->meta_title ?: $post->title) @section('meta_description', $post->meta_description ?: $post->excerpt) @section('content')
@if($post->image) {{ $post->title }} @endif
{!! $post->content !!}
Share: WhatsApp All Articles
@if($related->count())

Related Articles

@foreach($related as $r) @if($r->image)@endif
{{ $r->category ?: 'Blog' }}
{{ $r->title }}
@endforeach
@endif @push('styles') @endpush @endsection