PLOCAL Business

Business Dashboard

Account ·

@csrf

@if($selection_required)

Select a Business

Choose an authorized Business to view its private PLOCAL information.

@elseif($business === null)

No Business is currently linked to this account.

@else

{{ $business['display_name'] }}

{{ $business['category'] ?? 'Business' }}@if($business['city'] || $business['state']) · {{ $business['city'] }}{{ $business['city'] && $business['state'] ? ', ' : '' }}{{ $business['state'] }}@endif

Public Profile status: {{ str_replace('_', ' ', $business['publication_status']) }}

@if($business['profile_url'])

View public PLOCAL Profile

@endif

Evaluation status: {{ str_replace('_', ' ', $business['lifecycle_state']) }}

@if($business['current_award'])

Current recognition: {{ ucwords(str_replace('_', ' ', $business['current_award']['level'])) }} ({{ $business['current_award']['period_key'] }})

Official badge@endif

Evaluations

@forelse($evaluations as $evaluation)

{{ ucwords(str_replace('_', ' ', $evaluation['status'])) }}

Started {{ $evaluation['started_at'] }} · Deadline {{ $evaluation['ends_at'] }}

@if($evaluation['plocal_score'] !== null)

Digital {{ number_format($evaluation['digital'], 2) }}/10 · Service {{ number_format($evaluation['service'], 2) }}/10 · Trust {{ number_format($evaluation['trust'], 2) }}/10 · PLOCAL Score {{ number_format($evaluation['plocal_score'], 2) }}/10

@else

Final scores are not available yet.

@endif
@empty

No completed Evaluation results yet.

@endforelse

Payments

@forelse($payments as $payment)

{{ $payment['currency'] }} {{ number_format($payment['base_amount_minor'] / 100, 2) }} Evaluation purchase

Payment: {{ ucwords(str_replace('_', ' ', $payment['payment_status'])) }} · Total: {{ $payment['total_amount_minor'] === null ? 'Pending' : '$'.number_format($payment['total_amount_minor'] / 100, 2) }}

Refund status: {{ ucwords(str_replace('_', ' ', $payment['refund_status'])) }}@if($payment['refunded_amount_minor']) · ${{ number_format($payment['refunded_amount_minor'] / 100, 2) }} refunded @endif

@empty

No payment history yet.

@endforelse

Awards & Recognition

@forelse($awards['history'] as $award)

{{ ucwords(str_replace('_', ' ', $award['level'])) }}

Official period: {{ $award['period_key'] }} ({{ $award['period_timezone'] }})

Status: {{ $award['currently_valid'] ? 'Awarded — active' : 'No longer active' }}

@empty

No Awards yet.

@endforelse

Need help? Contact PLOCAL support.

@endif