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

Blog {{ $brandName }}

Tips desain, inspirasi merchandise, dan panduan custom printing.

@if ($posts->count())
@foreach ($posts as $post)

{{ $post->created_at->format('d M Y') }}

{{ $post->title }}

{{ $post->excerpt ?? \Illuminate\Support\Str::limit(strip_tags($post->body), 120) }}

Baca →
@endforeach
{{ $posts->links() }}
@else

Belum ada artikel.

@endif
@endsection