@extends('layouts.app') @section('title', $post->title ?? 'Blog') @section('content')

Blog Detail

Discover our story and the passion behind our work.

{{ $post->title }}

{{ \Carbon\Carbon::parse($post->added_date)->format('F d, Y') }}
@php $img = env('ADMIN_BASE_URL').$post->cover_image ?: asset('assets/image/logo-dark.svg'); @endphp @if(!empty($post->cover_image)) @else No image @endif
{{-- Render HTML content from DB --}} {!! $post->content ?? $post->body ?? '' !!}
{{-- Recent posts --}}
{{-- Contact / CTA section (unchanged) --}}
@endsection