@extends('layouts.frontend') @section('title') {{ $blog->title }} @endsection @section('meta_title') {{ $blog->meta_title }} @endsection @section('meta_image') {{ asset('/storage/'.$blog->image) }} @endsection @section('meta_description') {{ $blog->meta_description }} @endsection @section('styles') @endsection @section('content')
{{--
--}}

{{ $blog->getCategory->name??'' }}

{{ $blog->title }}

{{--

{{ $blog->short_description }}

--}}
@if($blog->youtube_video) @php // Extract video ID inline preg_match('/(?:youtu\.be\/|youtube\.com\/(?:watch\?(?:.*&)?v=|embed\/))([^?&"\'>]+)/', $blog->youtube_video, $matches); $videoId = $matches[1] ?? null; @endphp @else {{ $blog->title }} @endif
{!! $blog->description !!}
{{--

"Your personal brand is the unique story that only you can tell. Own it, share it, and let it shine."

Henry Fawyel
--}}

Comments

{{--
--}}
@csrf
@forelse($comments as $comment)

User

{{ $comment->created_at->diffForHumans() }}

{{-- Reply --}}

“{{ $comment->comment }}"

@empty @endforelse
{{ $comments->links() }} {{--

“I love how this breaks down the importance of consistency and authenticity. It's easy to get caught up in trends, but staying true to yourself really is key. Great read!"

--}}
{{--
Leave a Reply

Provide clear contact information, including phone number, email, and address.

--}}
{{--
@include('includes.sidebar')
--}}
@endsection