@extends('layouts.app') @section('title', 'Blogs | Angel Care Institute') @section('content')
Insights and updates

Caregiving Career Blogs

Read practical guidance on training, visas, destinations, language preparation, and international caregiving careers.

@if($blogs->isEmpty())

Blogs coming soon

Helpful articles and career updates will be published here shortly.

@else
@foreach($blogs as $i => $post) @php $wordCount = str_word_count(strip_tags($post->content ?? '')); $readTime = max(1, (int) ceil($wordCount / 200)); @endphp
{{ $post->title }}
Blog
{{ optional($post->published_at)->format('M j, Y') }} {{ $readTime }} min read

{{ $post->title }}

{{ Str::limit($post->excerpt, 125) }}

{{ $post->author->name ?? 'Angel Care Team' }} Read More
@endforeach
{{ $blogs->links() }}
@endif
@endsection