@extends('layouts.internal') @section('title', 'Business of the Year · PLOCAL Internal') @section('content')

Award progression

Business of the Year — {{ $periodKey }}

Only Businesses with a legitimate Business of the Month Award inside this official America/Los_Angeles year may be selected. Selection is Administrator-only and only permitted after the year closes. No score, vote, or win count auto-selects a winner.

@if($pool['existing_award'])

Business of the Year decided

This official year already has a Business of the Year Award (Business #{{ $pool['existing_award']->business_id }}, issued {{ \Carbon\Carbon::parse($pool['existing_award']->issued_at)->format('M j, Y') }}). Award history is append-only. Revoke or correct this Award if needed.

@elseif(!$pool['closed'])

Official year still open

Business of the Year cannot be selected until this official PT year closes. The candidate pool below may still be reviewed.

@endif @if(empty($pool['candidacies']))

No eligible candidates

No Business earned a Business of the Month Award inside this official year.

@else
@foreach($pool['candidacies'] as $candidate) @endforeach
Business of the Year candidates
BusinessMonth Awards this yearStatusAction
{{ $candidate->display_name }} {{ count($candidate->bom_award_period_keys) }} ({{ implode(', ', $candidate->bom_award_period_keys) }}) {{ str($candidate->eligibility_status)->title() }} @if($pool['closed'] && !$pool['existing_award'] && $internalUser->hasPermission('recognition.final_decision'))
@csrf
@else Selection unavailable @endif
@endif @endsection