@extends('website::modern.layout.master') @section('title', 'Our Blog - ' . ($data['values']['doctor_name'] ?? 'Doctor')) @section('content')
Doctor's Blog

Your Health, My Words

@if(isset($posts) && $posts->count() > 0) @foreach($posts as $post)
@if($post->image) {{ $post->title }} @else {{ $post->title }} @endif

{{ $post->title }}

@if($post->content)

{{ Str::limit($post->content, 120) }}

@endif
@if($post->author) {{ $post->author }} @endif @if($post->published_at) {{ $post->published_at->format('d F Y') }} @endif Blog
slug/post/$post->id?token=$token") }}" class="btn"> Read more
@endforeach @if($posts->hasPages())
{{ $posts->links() }}
@endif @else @for($i = 0; $i < 6; $i++)

The Medical Minute Quick Tips for Better Living

This is a default excerpt for the blog post. It provides a brief overview of the content.

Doctor 11 March 2025 Blog
@endfor @endif
@endsection