@extends('layouts.app') @section('title', 'Journal') @php $posts = collect(config('shop.posts')); $featured = $posts->first(); $rest = $posts->slice(1); @endphp @section('content') {{-- Page hero --}}

The Divne journal

Skincare, Simplified

Ingredient deep-dives, honest routines and seasonal care — written by our formulators, not marketers.

{{-- Featured post --}}
{{ $featured['title'] }}

Featured · {{ $featured['category'] }} · {{ $featured['read'] }}

{{ $featured['title'] }}

{{ $featured['excerpt'] }}

{{ \Carbon\Carbon::parse($featured['date'])->format('F j, Y') }}

Read Article
{{-- Post grid — repeat demo posts to fill the grid --}}
@foreach ($rest->concat($posts)->take(6) as $post)
{{ $post['title'] }}

{{ $post['category'] }} · {{ $post['read'] }}

{{ $post['title'] }}

{{ $post['excerpt'] }}

{{ \Carbon\Carbon::parse($post['date'])->format('F j, Y') }}

@endforeach
{{-- Pagination (static) --}}
@endsection