@extends('layouts.admin', ['heading' => 'Ranks', 'subheading' => 'Rank criteria and bonuses']) @section('content')
Create Rank
@csrf
@forelse($ranks as $rank) @empty @endforelse
Rank Criteria Bonus Capping Actions
{{ $rank->name }}
Priority {{ $rank->priority }}
Directs: {{ $rank->required_active_directs }}
Weak Leg BV: {{ $rank->required_weak_leg_bv }}
Team Turnover: {{ $rank->required_team_turnover }}
{{ number_format((float) $rank->reward_amount, 2) }} {{ number_format((float) $rank->daily_capping, 2) }}
@csrf
No ranks found.
@endsection