@extends('layouts.app') @section('content')

Choose Your Plan

Manage and monitor all financial transactions

@foreach($plans as $plan)
@if($plan->name === 'Pro Plan') Most Popular @endif

{{ $plan->name }}

${{ number_format($plan->price, 0) }}

@if($plan->icon)
@endif
@if($plan->description)

{{ $plan->description }}

@endif

Commission Rate

{{ $plan->commission_rate }}%

Cashback

${{ number_format($plan->cashback, 0) }}

Direct Commission

${{ number_format($plan->direct_commission, 0) }}

Owner Share

${{ number_format($plan->owner_share, 0) }}

E-Book Access: {{ $plan->ebook_access ? 'Yes' : 'No' }}
Target Hitting Bonus: {{ $plan->target_hitting_bonus ? 'Yes' : 'No' }}
@auth @if(auth()->user()->plan_id === $plan->id) @else
Purchase Now
@endif @else
{{ $plan->price == 0 ? 'Get Started' : ($plan->name === 'Pro Plan' ? 'Go Pro' : 'Upgrade Now') }}
@endauth
@endforeach
@endsection