@extends('layouts.app') @section('title', 'Blog - Thriving Lives Christian Counselling Center') @section('description', 'Read our latest articles on Christian counseling, mental health, and faith.') @section('content')

Our Blog

@forelse($posts as $post)
@if($post->image) {{ $post->title }} @endif
{{ $post->title }}

{{ $post->excerpt ?: Str::limit($post->body, 150) }}

Read More
@empty

No posts have been published yet. Please check back later.

@endforelse
{{ $posts->links() }}
@endsection @push('styles') @endpush