@extends('website::default.layout.master') @section('title', 'Our Blog - ' . ($data['values']['doctor_name'] ?? 'Medolia')) @section('content')
@if(isset($posts) && $posts->count() > 0) @foreach($posts as $post)
{{ $post->title }}

{{ $post->title }}

@if($post->content)

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

@endif @if($post->author || $post->published_at)
@if($post->author) {{ $post->author }} @endif @if($post->published_at) {{ $post->published_at->format('M d, Y') }} @endif
@endif slug/post/$post->id?token=$token") }}" class="btn btn-outline-primary btn-sm"> Read More
@endforeach @else @for($i = 0; $i < 3; $i++)
Default Blog Post

Default Blog Post Title

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

Author Name Jan 01, 2023
Read More
@endfor @endif
@if(isset($posts) && $posts->hasPages())
@endif
@endsection