Subscription Required!
You currently do not have an active pricing subscription plan. To post new jobs and access candidate profiles, please choose one of our verified recruitment plans below.
@foreach($plans as $plan)
@php
$isCurrent = $activeSub && $activeSub->plan_id == $plan->id;
$featuresList = json_decode($plan->features, true) ?? [];
// Determine button label and styling
$btnText = 'Subscribe Now';
$btnClass = $plan->is_popular ? 'btn-teal-gradient' : 'btn-light border';
$btnStyle = !$plan->is_popular ? 'background:#fff; color:#475569; border-radius:0.5rem; border-color:#cbd5e1 !important;' : '';
if ($activeSub) {
if ($isCurrent) {
$btnText = 'Current Active Plan';
} elseif ($plan->price > $activeSub->plan->price) {
$btnText = 'Upgrade Plan';
$btnClass = 'btn-teal-gradient';
$btnStyle = '';
} else {
$btnText = 'Choose Plan';
}
}
@endphp
@if($isCurrent)
ACTIVE PLAN
@elseif($plan->is_popular)
MOST POPULAR
@endif
{{ $plan->name }}
{{ $plan->description }}
₹{{ number_format($plan->price, 0) }}
/ {{ $plan->billing_cycle }}
@foreach($featuresList as $feat)
{{ $feat }}
@endforeach
@if($isCurrent)
{{ $btnText }}
@else
@endif
@endforeach