@php $canonical = config('plocal.public_url').'/recognition/'; $badgeAssets = [ 'business_of_the_day' => 'business-of-the day.svg', 'business_of_the_month' => 'business-of-the-month.svg', 'business_of_the_year' => 'business-of-the year.svg', ]; $levelLabels = [ 'business_of_the_day' => 'Business of the Day', 'business_of_the_month' => 'Business of the Month', 'business_of_the_year' => 'Business of the Year', ]; $badgeAlt = [ 'business_of_the_day' => 'PLOCAL Business of the Day award', 'business_of_the_month' => 'PLOCAL Business of the Month award', 'business_of_the_year' => 'PLOCAL Business of the Year award', ]; $formatPeriod = function (string $level, string $periodKey) { return match ($level) { 'business_of_the_day' => \Carbon\Carbon::createFromFormat('Y-m-d', $periodKey)->format('F j, Y'), 'business_of_the_month' => \Carbon\Carbon::createFromFormat('Y-m-d', $periodKey.'-01')->format('F Y'), 'business_of_the_year' => $periodKey, default => $periodKey, }; }; $levelFilters = ['all' => 'All', 'day' => 'Business of the Day', 'month' => 'Business of the Month', 'year' => 'Business of the Year']; $shortLevel = ['business_of_the_day' => 'day', 'business_of_the_month' => 'month', 'business_of_the_year' => 'year']; @endphp @extends('layouts.public') @section('title', 'PLOCAL Recognition & Winners') @section('description', 'Official PLOCAL Business of the Day, Business of the Month, and Business of the Year award winners.') @section('robots', 'index, follow') @section('canonical', $canonical) @section('image', !empty($latestWinners['business_of_the_day']['screenshot_reference_public_id'] ?? null) ? route('public.profiles.screenshot', [$latestWinners['business_of_the_day']['profile_slug'], $latestWinners['business_of_the_day']['screenshot_reference_public_id']]) : config('plocal.public_url').'/assets/img/og-meta/plocal-home.png') @section('body-class', 'plocal-service-market-page plocal-recognition-page') @section('body-attributes')data-render-source="new_model" data-page="recognition"@endsection @push('styles') @endpush @section('content') @include('public.partials.site-header')

PLOCAL / Recognition

Official PLOCAL Award Winners

Business of the Day, Business of the Month, and Business of the Year are official PLOCAL recognition — never a score or vote leaderboard.

Latest Winners

Currently Recognized

@foreach (['business_of_the_day', 'business_of_the_month', 'business_of_the_year'] as $level) @php $winner = $latestWinners[$level]; @endphp
@if ($winner !== null && !empty($winner['screenshot_reference_public_id']))
Submitted website screenshot for {{ $winner['display_name'] }}{{ $badgeAlt[$level] }}
@else @endif {{ $levelLabels[$level] }} @if ($winner !== null)

{{ $winner['display_name'] }}

{{ $formatPeriod($level, $winner['period_key']) }} @if ($winner['city']) · {{ $winner['city'] }}, {{ $winner['state'] }} @endif

View Profile @else

No {{ $levelLabels[$level] }} awarded yet

Check back once PLOCAL issues this recognition.

@endif
@endforeach
Chronology

Award History

@if ($history->isNotEmpty())
@foreach ($history as $award)
@if (!empty($award['screenshot_reference_public_id']))
Submitted website screenshot for {{ $award['display_name'] }}{{ $badgeAlt[$award['award_level']] }}
@else @endif {{ $levelLabels[$award['award_level']] }}

{{ $award['display_name'] }}

{{ $formatPeriod($award['award_level'], $award['period_key']) }} @if ($award['city']) · {{ $award['city'] }}, {{ $award['state'] }} @endif

View Profile
@endforeach
@else

No Award history for this level yet.

@endif
@section('footer-note', 'PLOCAL Recognition reflects official award decisions only — never score, votes, or payment.') @include('public.partials.site-footer') @endsection