@extends('layouts.app') @section('content')
{{-- Header --}}

Parenting Tips & Guides

Expert advice on child development, educational play, and parenting tips to help your child grow.

{{-- Featured Post --}} @if($blogs->count() > 0) @php $featured = $blogs->first(); @endphp
{{ $featured->title }}
{{ $featured->category }}

{{ $featured->title }}

{{ $featured->excerpt }}

{{ substr($featured->author?->name ?? 'A', 0, 1) }}

{{ $featured->author?->name ?? 'Admin' }}

{{ $featured->published_at?->format('M d, Y') }}

{{-- Blog Grid --}}
@foreach($blogs->skip(1) as $blog) @endforeach
{{-- Pagination --}}
{{ $blogs->links() }}
@else

No blog posts available yet.

@endif
@endsection