@extends('layouts.public') @section('title', 'Home') @section('content')

Where ideas become legacy

A premium blog network curated by passionate authors, read by thoughtful minds.

⊹ ⊹ ⊹

Featured Stories

@forelse($featured as $blog)
@if($blog->category){{ $blog->category->name }}@endif

{{ $blog->title }}

{{ \Illuminate\Support\Str::limit($blog->excerpt ?? strip_tags($blog->content), 110) }}

By {{ $blog->author->name }} {{ $blog->readingTime() }} min read
@empty
No blogs published yet. Check back soon.
@endforelse
@if($latest->isNotEmpty())

Latest from the Press

@foreach($latest as $blog)
@endforeach
@endif @if($categories->isNotEmpty())

Explore Topics

@foreach($categories as $cat) @endforeach
@endif @if($packages->isNotEmpty())

Publish With Us

Lifetime hosting. One-time fee. Your story online forever.

@foreach($packages as $package)
@endforeach
@endif @endsection