@extends('blog.layout') @section('meta_title', config('app.name').' — Home') @section('content')

Latest posts

@foreach($posts as $post)
@if($post->featured_image) @endif

{{ $post->title }}

{{ $post->published_at?->format('M j, Y') }} · {{ $post->author->name ?? '' }}

@if($post->excerpt)

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

@endif Read more
@endforeach
{{ $posts->links() }}
@endsection