@extends('layouts.public') @section('title', 'Blog - ' . $siteName) @section( 'description', 'Read matrimonial tips, relationship advice and helpful stories from ' . $siteName . '.' ) @section('main-class', 'public-main blog-main') @section('content')
Stories & Advice

Guidance for a more meaningful matrimonial journey.

Thoughtful advice, relationship insights and practical guidance to help you navigate your search with confidence.

@if($posts->count())
@foreach($posts as $post)
@if(!empty($post->image)) {{ $post->title }} @endif
@if(!empty($post->published_at)) @endif

{{ $post->title }}

@if(!empty($post->excerpt))

{{ $post->excerpt }}

@elseif(!empty($post->content))

{{ \Illuminate\Support\Str::limit(strip_tags($post->content), 150) }}

@endif Read article
@endforeach
@if(method_exists($posts, 'links'))
{{ $posts->links() }}
@endif @else

No articles yet

New stories and matrimonial guidance will appear here soon.

@endif
@endsection