@extends('dashboard.admin.layouts.app')
@section('content')
- Name:
- {{ $plan->name }}
- Type:
- {{ $plan->type->label() }}
- Features:
-
@foreach ($plan->features as $feature)
- {{ ucwords(str_replace('_', ' ', $feature)) }}
@endforeach
- Trades Per Day:
-
{{ $plan->trades_per_day }}
- Minimum:
-
{{ formatAmount($plan->minimum) }}
- Maximum:
-
{{ formatAmount($plan->maximum) }}
- Daily Profit:
-
{{ $plan->daily_profit }}
- Duration (Days):
-
{{ $plan->daily_profit_duration }}
- Created At:
- {{ $plan->created_at->diffForHumans() }}
- Updated At:
- {{ $plan->updated_at->diffForHumans() }}
@endsection