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

{{ $title }}

@include('dashboard.admin.user.partials.account_options_and_status')
@foreach ($userPlans as $userPlan) @endforeach
# 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
@foreach ($userPlans as $userPlan)
Plan: {{ $userPlan->plan->name }}

Amount: {{ currency($user->currency) . formatAmount($userPlan->amount) }}

Daily Profit: {{ $userPlan->daily_profit }}

Duration (Days): {{ $userPlan->duration }}

Trades Per Day: {{ $userPlan->trades_per_day }}

@endforeach
@endsection