@component('layouts.app', [ 'title' => $post['title'], 'metaDescription' => $post['excerpt'], ]) @include('partials.page-hero', [ 'eyebrow' => $post['category'] . ' ยท ' . $post['date'], 'title' => $post['title'], 'subtitle' => $post['excerpt'], ])
Back to Blog
{{ $post['title'] }}
{{ collect(explode(' ', $post['author']))->map(fn ($n) => mb_substr($n, 0, 1))->join('') }}

{{ $post['author'] }}

{{ $post['authorRole'] }}

{{ $post['date'] }} {{ $post['readTime'] }}
@foreach ($post['body'] as $paragraph)

{{ $paragraph }}

@endforeach
Share this article @foreach ([ ['icon' => 'fa-brands fa-facebook-f', 'label' => 'Facebook'], ['icon' => 'fa-brands fa-x-twitter', 'label' => 'X (Twitter)'], ['icon' => 'fa-brands fa-linkedin-in', 'label' => 'LinkedIn'], ['icon' => 'fa-solid fa-link', 'label' => 'Copy Link'], ] as $share) @endforeach
@if ($related->count())

Related Articles

@foreach ($related as $r)
{{ $r['title'] }}
{{ $r['category'] }}

{{ $r['title'] }}

@endforeach
@endif
@include('frontend.partials.home.cta') @endcomponent