@extends('layouts.app') @section('title',$Title) @section('content')

{{$Title}} {{count($Blogs)}} blogs

Journey across the globe to uncover the stories, traditions, and beauty that shape our shared human experience.

@forelse($Blogs as $blog)
{{ $blog->category->name ?? '' }}
  • {{-- dynamic reading time (compute here if you didn't compute server-side) --}} @php $text = strip_tags($blog->content ?? $blog->short_description ?? ''); $words = str_word_count($text); $wpm = 200; $reading_mins = max(1, (int) ceil($words / $wpm)); @endphp

    {{ $reading_mins }} mins read

{{ ucfirst($blog->title ?? '') }}

{{ $blog->short_description ?? '' }}

@empty
No Posts
@endforelse
@endsection