@extends('website.layouts.app') @section('title', ($post['title'] ?? 'Blog') . ' – ' . config('website.brand')) @section('meta_description', $post['excerpt'] ?? '') @section('content') @php $cta = config('website.cta'); $brand = config('website.brand'); @endphp
@if(!empty($post['tag']))

{{ $post['tag'] }}

@endif

{{ $post['title'] }}

{{ $post['excerpt'] ?? '' }}

← Back to blogs

@foreach(($post['paragraphs'] ?? []) as $paragraph)

{{ $paragraph }}

@endforeach
@if(!empty($relatedPosts))
@endif

Ready to put this into practice?

Start your free trial and build your academy with Learnyst.

@endsection