@extends('layouts.main') @section('content')

📖 Blog Details

@if($blog->image) {{ $blog->title }} @else
No Featured Image
@endif
Title {{ $blog->title }}
Category {{ $blog->category->name ?? 'Uncategorized' }}

{{ \Illuminate\Support\Str::limit(strip_tags($blog->description), 200) }}

@if(strlen(strip_tags($blog->description)) > 200) Read More → @endif
Back to Blogs Edit Blog
@endsection