No membership plans available at the moment. Please contact us.
@else
@foreach($plans as $plan)
@php
$durationMap = ['day'=>'Day','week'=>'Week','month'=>'Month','quarter'=>'3 Months','year'=>'Year'];
$dur = '';
if ($plan['duration_value'] ?? null) {
$v = $plan['duration_value'];
$u = $plan['duration_unit'] ?? '';
$dur = match($u) {
'day' => "$v Day" . ($v > 1 ? 's' : ''),
'week' => "$v Week" . ($v > 1 ? 's' : ''),
'month' => "$v Month" . ($v > 1 ? 's' : ''),
'quarter' => ($v*3)." Months",
'year' => "$v Year" . ($v > 1 ? 's' : ''),
default => '',
};
}
@endphp
@if($plan['is_featured'] ?? false)
Most Popular
@endif
{{ $plan['name'] }}
@if($dur)
{{ $dur }}
@endif
₹{{ number_format($plan['price'] ?? 0) }}
@if($dur)/ {{ $dur }}@endif
@if(($plan['registration_fee'] ?? 0) > 0)
+ ₹{{ number_format($plan['registration_fee']) }} joining fee
@endif
@if($plan['description'] ?? null)
{{ $plan['description'] }}
@endif
Join Now
@endforeach
@endif