@extends('layouts.public') @section('title', 'Payment confirmation | PLOCAL') @section('description', 'View the current server-confirmed status of your PLOCAL Evaluation payment.') @section('canonical', url()->current()) @section('body-class', 'plocal-payment-page') @section('content') @include('public.partials.site-header') @php $isActive = $payment_status === 'paid' && $activation_status === 'active'; $isPaidPending = $payment_status === 'paid' && ! $isActive; $statusLabel = $isActive ? 'Evaluation active' : ($isPaidPending ? 'Activation in progress' : ucfirst(str_replace('_', ' ', $payment_status))); $statusTone = $isActive ? 'success' : ($payment_status === 'failed' ? 'danger' : 'pending'); @endphp

PLOCAL EVALUATION

@if($isActive) Your Evaluation is active @elseif($isPaidPending) Payment confirmed @else Payment confirmation @endif

{{ $message }}

Payment {{ ucfirst(str_replace('_', ' ', $payment_status)) }}
Evaluation {{ $statusLabel }}

This page reflects PLOCAL's current server-confirmed status. The browser page never changes payment or Evaluation state.

@include('public.partials.site-footer') @endsection