{{-- Blog index — uses ContentLayout. --}} @extends('layouts.nova.content-layout') @php $hero_title = 'Blog'; $hero_description = 'News, tutorials and community stories from the Skinbase team.'; @endphp @section('page-content') @if($posts->isNotEmpty())
@foreach($posts as $post) @if($post->featured_image)
{{ $post->title }}
@else
@endif

{{ $post->title }}

@if($post->excerpt)

{{ $post->excerpt }}

@endif @if($post->published_at) @endif
@endforeach
{{ $posts->withQueryString()->links() }}
@else

No blog posts published yet. Check back soon!

@endif @endsection