@extends('layouts.guest') @section('title', __('Blog')) @section('content')

{{ __('Latest from our blog') }}

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

{{ $post->published_at?->format('M d, Y') }} ยท {{ $post->reading_time }} min read

{{ $post->title }}

{{ $post->excerpt }}

@empty

{{ __('No blog posts yet.') }}

@endforelse
{{ $posts->links() }}
@endsection