@extends('layouts.user', ['heading' => 'Plans & Binary Rules']) @section('content')
Pair Ratio
{{ $settings['pairing_ratio'] }}
Joining Pair Value
Rs. {{ number_format((float) $settings['joining_pair_value'], 2) }}
Repurchase Rate
{{ number_format((float) $settings['repurchase_pair_rate'], 2) }}%
Daily Capping
Rs. {{ number_format((float) $settings['daily_capping'], 2) }}
Withdrawal Hold
{{ (int) $settings['hold_days'] }} Days
Binary BV Status
Joining Left BV: {{ number_format((float) $binary['joining_left_bv'], 2) }}
Joining Right BV: {{ number_format((float) $binary['joining_right_bv'], 2) }}
Joining Matchable BV: {{ number_format((float) $binary['joining_matchable'], 2) }}
Joining Carry (L/R): {{ number_format((float) $binary['carry_joining_left'], 2) }} / {{ number_format((float) $binary['carry_joining_right'], 2) }}
Repurchase Left BV: {{ number_format((float) $binary['repurchase_left_bv'], 2) }}
Repurchase Right BV: {{ number_format((float) $binary['repurchase_right_bv'], 2) }}
Repurchase Matchable BV: {{ number_format((float) $binary['repurchase_matchable'], 2) }}
Repurchase Carry (L/R): {{ number_format((float) $binary['carry_repurchase_left'], 2) }} / {{ number_format((float) $binary['carry_repurchase_right'], 2) }}
Referral Placement Links
Left Link
{{ $links['left'] }}
Right Link
{{ $links['right'] }}
Auto Link
{{ $links['auto'] }}
Available Plans
@if($currentPlan) Current: {{ $currentPlan->name }} @else No Active Plan @endif
@forelse($plans as $plan)
{{ $plan->name }}
Price: Rs. {{ number_format((float) $plan->price, 2) }}
Plan BV: {{ number_format((float) $plan->bv, 2) }}
@if(is_array($plan->features) && count($plan->features))
    @foreach($plan->features as $feature)
  • {{ $feature }}
  • @endforeach
@endif @if($plan->button_text && $plan->button_link) {{ $plan->button_text }} @endif
@empty
No active plans configured yet.
@endforelse
@endsection