@extends('layouts.admin.base') @section('page-title') Plans @endsection @section('content')
| Plan Name/Category | Amount | Duration/Percentage | Payout Options | Referral Level | Feature List | Date | Status | Action |
|---|---|---|---|---|---|---|---|---|
|
{{ $plan->name }} {{ $plan->category->name }} |
{{ formatMoney($plan->minimum_amount) }} - {{ formatMoney($plan->maximum_amount) }} |
{{ $plan->duration }} Days/{{ $plan->minimum_profit }} to {{ $plan->profit }}% Check Calendar |
@foreach ($plan->payout_options as $option)
{{ $option->name }} @endforeach |
@foreach ($plan->referral_levels() as $referral_level)
Level {{ $referral_level->level }} - {{ $referral_level->value }}% @endforeach |
@foreach ($plan->features as $feature)
{{ $feature->name }} @endforeach |
{{ timeAgo($plan->created_at) }} |
{{ $plan->status_data()->message }} |
|