@extends('frontend.layouts.app') @push('styles') @endpush @section('content') {{-- Breadcrumb --}}
{{-- ── LEFT: Article ── --}}
{{-- Featured Image --}} @if($post->featured_image_url) {{ $post->featured_image_alt ?? $post->title }} @else
@endif
{{-- Category + Meta --}}
@if($post->category) {{ $post->category->name }} @endif
@if($post->published_at) {{ $post->published_at->format('d M Y') }} @endif @if($post->read_time) · {{ $post->read_time }} min read @endif @if($post->views_count > 0) · {{ number_format($post->views_count) }} views @endif
{{-- Title --}}

{{ $post->title }}

{{-- Excerpt --}} @if($post->excerpt)

{{ $post->excerpt }}

@endif {{-- Article Body --}}
{!! $post->content !!}
{{-- Author --}} @if($post->author)
{{ strtoupper(substr($post->author->name, 0, 1)) }}

{{ $post->author->name }}

Kashi Housing Advisory Team

@endif
{{-- ── Related Articles ── --}} @if($relatedPosts->count()) @endif
{{-- ── RIGHT: Sidebar ── --}}
{{-- Consultation CTA --}} {{-- Categories --}} {{-- Explore Investments --}}
{{-- /sidebar --}}
@endsection