@extends('layouts.public') @section('title', 'PLOCAL Blog') @section('description', 'Practical ideas, insights, and stories for stronger local businesses.') @section('robots', 'index, follow') @section('canonical', config('plocal.public_url').'/blog') @section('image', config('plocal.public_url').'/assets/img/og-meta/plocal-blog.png') @push('styles')@endpush @section('content') @include('public.partials.site-header')

PLOCAL Blog

Ideas for stronger local businesses

Practical perspective on credibility, visibility, and customer readiness.

@if($articles->isEmpty())

PLOCAL articles will appear here once published.

@else
@foreach($articles as $article)
@if($article['cover_image_url']){{ $article['cover_image_alt'] ?? '' }}@elsePLOCAL@endif
@if($article['is_featured'])Featured@endif

{{ $article['title'] }}

{{ $article['excerpt'] }}

Read article
@endforeach
{{ $articles->links() }}
@endif
@section('footer-note', 'PLOCAL Blog is separate from Business Evaluation, Recognition, Voting, and Award decisions.') @include('public.partials.site-footer') @endsection