@extends($activeTemplate . 'user.dps.layout') @section('dps-content')
@lang('You have requested to invest in DPS')

(@lang('Be Sure Before Confirm'))

  • @lang('Plan') {{ __($plan->name) }}
  • @lang('Installment Interval') {{ $plan->installment_interval }} {{__(Str::plural('Day', $plan->installment_interval))}}
  • @lang('Total Installment') {{ $plan->total_installment }}
  • @lang('Per Installment') {{showAmount($plan->per_installment) }}
  • @lang('Total Deposit') {{showAmount($plan->per_installment * $plan->total_installment) }}
  • @lang('Profit Rate') {{ getAmount($plan->interest_rate) }}%
  • @lang('Withdrawable Amount') {{showAmount($plan->final_amount) }}

@if ($plan->delay_value && $plan->delay_charge) * @lang('If an installment is delayed for') {{ $plan->delay_value }} @lang('or more days then, an amount of'), {{$plan->delayCharge }} @lang('will be applied for each day.')
* @lang('The total charge amount will be subtracted from the withdrawable amount.') @endif

@lang('Cancel')
@csrf
@endsection