{{ $package->name }}

{{ number_format($package->price) }} {{ $package->currency ?? 'UGX' }} @if($package->duration_days) for {{ $package->duration_days }} days @endif
@if($package->is_featured) ⭐ Featured @endif
@if($package->property_limit)
{{ $package->property_limit }}
Properties
@endif @if($package->manager_limit)
{{ $package->manager_limit }}
Managers
@endif @if($package->tenant_application_limit)
{{ $package->tenant_application_limit }}
Tenant Applications
@endif
@if(!empty($features))

Package Features

@foreach($features as $feature) @if(trim($feature))
{{ trim($feature) }}
@endif @endforeach
@endif @if(auth()->user()->package_id === $package->id)
This is your current package
@if(auth()->user()->account && auth()->user()->account->subscription_expires_at)

Expires on {{ auth()->user()->account->subscription_expires_at->format('F j, Y') }} ({{ auth()->user()->account->subscription_expires_at->diffForHumans() }})

@endif
@endif