@extends('admin.layouts.app') @section('title', 'Plans Management') @section('content') @if (session('success'))
Manage investment plans and their commission rates
Plan Name | Price | Commission Rate | Cashback | Subscribers | Status | Actions |
---|---|---|---|---|---|---|
{{ $plan->name }}
{{ $plan->description }}
|
${{ number_format($plan->price, 2) }} | {{ $plan->commission_rate }}% | ${{ number_format($plan->cashback, 2) }} | {{ $plan->users_count ?? 0 }} |
is_active ? 'checked' : '' }}
onchange="togglePlanStatus({{ $plan->id }})">
|