@extends('layouts.admin', ['title' => 'Current Plan - Booklio', 'pageTitle' => 'Current Plan', 'active' => 'subscription']) @include('admin.subscription.partials.data') @php($activeTab = 'current') @section('content')
@include('admin.subscription.partials.nav', ['activeTab' => $activeTab]) @if ($subscriptionState['trial_ending'] ?? false)

Trial Ending Soon Banner

Your trial ends in {{ $subscriptionState['trial_days_left'] ?? 3 }} days. Upgrade now to keep appointments, invoices, and reminders active.

Upgrade now
@endif
@foreach ([['Current plan name', $currentPlan['name']], ['Billing cycle', $currentPlan['cycle']], ['Subscription status', $currentPlan['status']], ['Renewal date', $currentPlan['renewal']]] as $item)

{{ $item[0] }}

{{ $item[1] }}

@endforeach
Upgrade Plan Cancel subscription
@include('admin.subscription.partials.usage-bars')
@forelse ($planBenefits as $feature)
{{ $feature }}
@empty

No plan benefits are active yet. Choose a plan to unlock Booklio modules.

@endforelse
@endsection