@extends('layouts.marketing') @section('title', $post->seo_title . ' — Inventino Blog') @section('description', $post->seo_description) @section('keywords', implode(', ', array_filter([$post->category ?? '', 'Inventino Blog', 'inventory management Nigeria', 'business tips Nigeria']))) @section('canonical', route('blog.show', $post->slug)) @section('og_type', 'article') @section('og_title', $post->seo_title) @section('og_description', $post->seo_description) @if($post->cover_image_url)@section('og_image', url($post->cover_image_url))@endif @section('og_image_alt', $post->seo_title) @push('og_extra') @if($post->updated_at)@endif @if($post->author)@endif @endpush @push('schema') @endpush @push('styles') @endpush @section('content')
@if($post->cover_image_url) @endif
@if($post->category) {{ \Illuminate\Support\Str::title($post->category) }} @endif {{ $post->published_at->format('F j, Y') }} {{ $post->reading_time }} min read

{{ $post->title }}

@if($post->excerpt)

{{ $post->excerpt }}

@endif
@if($post->cover_image_url)
{{ e($post->title) }}
@endif
{!! (new \League\CommonMark\CommonMarkConverter([ 'html_input' => 'strip', 'allow_unsafe_links' => false, 'max_nesting_level' => 10, ]))->convert($post->content)->getContent() !!}
@if($post->tags && count($post->tags))
@foreach($post->tags as $tag) {{ $tag }} @endforeach
@endif @if($related->isNotEmpty())

Related Articles

@foreach($related as $i => $rel) @php $catKey = strtolower($rel->category ?? ''); $colorMap = [ 'inventory' => ['bg' => 'rgba(34,197,94,0.2), rgba(16,185,129,0.1)', 'badge' => 'badge-green', 'link' => 'text-green-400 hover:text-green-300'], 'pos' => ['bg' => 'rgba(139,92,246,0.2), rgba(59,130,246,0.1)', 'badge' => 'badge-purple', 'link' => 'text-violet-400 hover:text-violet-300'], 'updates' => ['bg' => 'rgba(245,158,11,0.2), rgba(251,191,36,0.1)', 'badge' => 'badge-orange', 'link' => 'text-amber-400 hover:text-amber-300'], 'business' => ['bg' => 'rgba(236,72,153,0.2), rgba(168,85,247,0.1)', 'badge' => 'bg-pink-500/20 text-pink-400 border border-pink-500/30', 'link' => 'text-pink-400 hover:text-pink-300'], ]; $c = $colorMap[$catKey] ?? ['bg' => 'rgba(59,130,246,0.2), rgba(14,165,233,0.1)', 'badge' => 'badge-blue', 'link' => 'text-blue-400 hover:text-blue-300']; $delays = ['scroll-reveal', 'scroll-reveal scroll-reveal-delay-1', 'scroll-reveal scroll-reveal-delay-2']; @endphp @endforeach
@endif

Ready to Take Control of Your Inventory?

Join thousands of Nigerian businesses using Inventino to manage stock, sales, and growth.

@endsection @push('scripts') @endpush