@extends('layouts.admin', ['heading' => 'Plans & Packages']) @section('content') @if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
@endif

Add Compensation Plan

@csrf
@forelse($plans as $plan) @empty @endforelse
Plan Compensation Limits Status Actions
{{ $plan->name }}
Price: {{ $plan->price }} | Join: {{ $plan->joining_amount }}
BV: {{ $plan->bv }}
Type: {{ $plan->matching_type }}
Pair Income: {{ number_format((float) $plan->pair_income, 2) }}
Binary %: {{ number_format((float) $plan->binary_percentage, 4) }}
Daily Pair: {{ $plan->daily_pair_limit ?? 'N/A' }}
Weekly Pair: {{ $plan->weekly_pair_limit ?? 'N/A' }}
Carry Forward: {{ $plan->carry_forward_enabled ? 'Yes' : 'No' }}
Active: {{ $plan->is_active ? 'Yes' : 'No' }}
Sort: {{ $plan->sort_order }}
@csrf
No plans found.
@endsection