@php $fm = $post['frontmatter'] ?? []; $isLegacy = $legacy ?? false; $canonicalUrl = url('/blog/' . ($post['slug'] ?? '')); $rawMdUrl = url('/blog/' . ($post['slug'] ?? '') . '.md'); $ogImage = $fm['og_image'] ?? $fm['featured_image'] ?? null; if ($ogImage && !Str::startsWith($ogImage, 'http')) { $ogImage = asset(ltrim($ogImage, '/')); } $seo = [ 'title' => ($fm['title'] ?? 'Post') . ' · GE-AS Blog', 'description' => $fm['excerpt'] ?? '', 'robots' => ($fm['noindex'] ?? false) ? 'noindex, follow' : 'index, follow', 'canonical' => $fm['canonical'] ?? $canonicalUrl, 'og_type' => 'article', 'og_image' => $ogImage, 'extra_head' => '', 'json_ld' => [ '@context' => 'https://schema.org', '@type' => 'BlogPosting', 'headline' => $fm['title'] ?? '', 'description' => $fm['excerpt'] ?? '', 'image' => $ogImage ? [$ogImage] : [], 'datePublished' => !empty($fm['published_at']) ? \Carbon\Carbon::parse($fm['published_at'])->toIso8601String() : null, 'dateModified' => !empty($fm['updated_at']) ? \Carbon\Carbon::parse($fm['updated_at'])->toIso8601String() : (!empty($fm['published_at']) ? \Carbon\Carbon::parse($fm['published_at'])->toIso8601String() : null), 'author' => [ '@type' => 'Person', 'name' => $post['author']['display_name'] ?? 'GE-AS Team', ], 'publisher' => [ '@type' => 'Organization', 'name' => 'GE-AS', 'url' => url('/'), 'logo' => [ '@type' => 'ImageObject', 'url' => asset('new-assets/logo.svg'), ], ], 'mainEntityOfPage' => [ '@type' => 'WebPage', '@id' => $canonicalUrl, ], 'keywords' => $fm['keywords'] ?? [], ], ]; @endphp @extends('layouts.user') @section('content') {{-- HERO --}} @include('blog.partials.hero', ['post' => $post]) {{-- BREADCRUMBS --}}
Home Blog {{ Str::limit($fm['title'] ?? '', 60) }}
{{-- ARTICLE + TOC LAYOUT --}}
{{-- Sidebar TOC (desktop only) --}}
@include('blog.partials.toc', ['post' => $post])
{{-- Article body --}}
@if($isLegacy)
This post is being rewritten. Content shown is the original 2024 version.
@endif
{!! $post['html'] !!}
{{-- Share + updated-at footer --}}
@if(!empty($fm['updated_at'])) Last updated {{ \Carbon\Carbon::parse($fm['updated_at'])->format('M j, Y') }} @endif
@include('blog.partials.share', ['post' => $post])
{{-- Author bio --}} @include('blog.partials.author-bio', ['post' => $post])
{{-- RELATED POSTS --}} @if(!empty($related))
Keep reading

More from the GE-AS blog

@foreach($related as $r) @php $rSlug = $r['slug'] ?? '#'; $rTitle = $r['title'] ?? 'Untitled'; $rExcerpt = $r['excerpt'] ?? ''; $rImage = $r['featured_image'] ?? null; $rAuthor = $r['_author'] ?? null; $rDate = !empty($r['published_at']) ? \Carbon\Carbon::parse($r['published_at']) : null; @endphp
@if($rImage) {{ $rTitle }} @else
@endif

{{ $rTitle }}

@if($rExcerpt)

{{ Str::limit($rExcerpt, 100) }}

@endif
@if($rDate){{ $rDate->format('M j, Y') }}@endif
@endforeach
@endif {{-- BOTTOM CTA --}}

Start with $50. Trade in 3 minutes.

No inventory. No shipping. AI-driven arbitrage across 14 marketplaces.

Create your account
{{-- ============================================================ ARTICLE BODY TYPOGRAPHY Scoped to .geas-article-content so it doesn't leak into layout. ============================================================ --}} @endsection