@extends('dashboard.admin.layouts.app') @section('content')
| # | Plan | Amount | Daily Profit | Duration (Days) | Trades Per Day | Status | Action |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $userPlan->plan->name }} | {{ currency($user->currency) . formatAmount($userPlan->amount) }} | {{ $userPlan->daily_profit }} | {{ $userPlan->duration }} | {{ $userPlan->trades_per_day }} | {{ $userPlan->status->label() }} | View |
Amount: {{ currency($user->currency) . formatAmount($userPlan->amount) }}
Daily Profit: {{ $userPlan->daily_profit }}
Duration (Days): {{ $userPlan->duration }}
Trades Per Day: {{ $userPlan->trades_per_day }}