@php $latest = $highlights['latest_bod']; $formatDay = fn (string $key) => \Carbon\Carbon::createFromFormat('Y-m-d', $key)->format('F j, Y'); @endphp @extends('layouts.public') @section('title', 'PLOCAL | Find Evaluated Local Businesses') @section('description', 'Find PLOCAL-evaluated local businesses and view official Business of the Day, Month, and Year recognition.') @section('robots', 'index, follow') @section('canonical', config('plocal.public_url').'/') @section('image', config('plocal.public_url').'/assets/img/og-meta/plocal-home.png') @section('body-class', 'plocal-home-page') @section('body-attributes')data-render-source="new_model" data-page="home"@endsection @push('styles') @endpush @section('content') @include('public.partials.site-header')
@if($latest)
Business of the Day official badge
Awarded date{{ $formatDay($latest['period_key']) }}
@if(!empty($latest['screenshot']['available']))Submitted website screenshot for {{ $latest['display_name'] }}@elsePLOCAL Evaluation visual@endif

Business of the Day

P
View Profile

{{ $latest['display_name'] }}

Awarded {{ $formatDay($latest['period_key']) }} in the official {{ $latest['period_timezone'] }} recognition period.

@else

PLOCAL Recognition

No Business of the Day has been announced yet.

Official recognition will appear here after PLOCAL issues an Award.

View Recognition
@endif

Newest Nominees

Find Businesses
@if($highlights['nominees'])
@foreach($highlights['nominees'] as $nominee)
@if($nominee['screenshot']['available'])
Submitted website screenshot for {{ $nominee['display_name'] }}

Nominee ยท {{ \Carbon\Carbon::parse($nominee['nominated_at'])->format('M j, Y') }}

View official Profile
@endif

{{ $nominee['display_name'] }}

@if(!empty($nominee['category']))

{{ $nominee['category'] }}

@endif @if($nominee['city'])

{{ $nominee['city'] }}, {{ $nominee['state'] }}

@endif @if($nominee['evaluation'] && $nominee['evaluation']['status'] === 'final')
Digital {{ number_format($nominee['evaluation']['digital'], 2) }} Service {{ number_format($nominee['evaluation']['service'], 2) }} Trust {{ number_format($nominee['evaluation']['trust'], 2) }}PLOCAL{{ number_format($nominee['evaluation']['plocal_score'], 2) }}
@else

Evaluation in progress

@endif
@endforeach
@else

New nominees will appear here as evaluations begin.

@endif

Previous Business of the Day Awards

View All Recognition
@if($highlights['recent_bod'])
@foreach($highlights['recent_bod'] as $award) @php $awardProfile = app(\App\Application\Recognition\GetPublicBusinessProfile::class)->handle($award['profile_slug']); $awardEvaluation = $awardProfile['evaluation'] ?? null; $awardBadge = '/assets/img/1-badge-system/'.match ($award['award_level']) { 'business_of_the_year' => 'business-of-the year.svg', 'business_of_the_month' => 'business-of-the-month.svg', default => 'business-of-the day.svg', }; @endphp
@if(!empty($award['screenshot_reference_public_id']))
Submitted website screenshot for {{ $award['display_name'] }}

Awarded {{ $formatDay($award['period_key']) }}

View official Profile
@endif
@if(empty($award['screenshot_reference_public_id']))

Awarded {{ $formatDay($award['period_key']) }}

@endif

{{ $award['display_name'] }}

@if($award['city'])

{{ $award['city'] }}, {{ $award['state'] }}

@endif
@if($awardEvaluation && $awardEvaluation['plocal_score'] !== null) PLOCAL SCORE{{ number_format($awardEvaluation['plocal_score'], 2) }}/10 @endif Official {{ str_replace('_', ' ', $award['award_level']) }} badge
@if(empty($award['screenshot_reference_public_id'])) View Profile @endif
@endforeach
@else

No previous Business of the Day Awards are available yet.

@endif

PLOCAL Blog

Ideas for stronger local businesses

View all articles
@if($featuredBlogArticle)
@if($featuredBlogArticle['is_featured'])Featured@endif

{{ $featuredBlogArticle['title'] }}

{{ $featuredBlogArticle['excerpt'] }}

Read article
@if($featuredBlogArticle['cover_image_url']){{ $featuredBlogArticle['cover_image_alt'] ?? '' }}@elsePLOCAL Blog@endif
@else

Fresh PLOCAL articles will appear here soon.

Explore the Blog
@endif
@section('footer-note', 'Businesses pay for Evaluation. Payment never determines score, qualification, ranking, or recognition.') @include('public.partials.site-footer') @endsection