@if ($listing->approved_by_admin == 'approved')
@php
$allowsPromotion = $plan_allows_promotion ?? \Modules\Subscription\Entities\SubscriptionPlan::allowsPromotionForUser($listing->agent_id);
$activePromotionCount = $listing->activePromotionCount();
$isPromoted = $allowsPromotion && $activePromotionCount > 0;
@endphp
@if ($allowsPromotion)
@if ($isPromoted)
{{ $activePromotionCount }}
@endif
@else
@endif
@endif