@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Almost There') }}!

@if ($id->plan_type == 'subscription')

{{ __('You have successfully placed order for ') }} {{ $id->plan_name }} {{ __('monthly subscription plan') }}.

{{ __('After successful payment, each month you will have') }} {{ number_format($id->characters) }} {{ __('characters added to your account. To keep your subsciption active in coming month, please provide payments by the end of the current month.') }}.

{{ __('Please provide payment to our bank requisites below. Use Order ID number as payment reference') }}.

Order ID: {{ $orderID }}

Total Payment Due: {{ number_format((float)$total_price, 2, '.', '') }} {{ config('payment.default_currency') }}

{{ $bank['bank_requisites'] }}
@endif @if ($id->plan_type == 'prepaid')

{{ __('You have successfully placed order for new ') }} {{ number_format($id->characters) }} {{ __('characters for your account') }}.

@if ($id->bonus > 0)

{{ __('With') }} +{{ number_format($id->bonus) }} {{ __('bonus characters as well') }}.

@endif

{{ __('Please provide payment to our bank requisites below. Use Order ID number as payment reference') }}.

Order ID: {{ $orderID }}

Total Payment Due: {{ number_format((float)$final_price, 2, '.', '') }} {{ config('payment.default_currency') }}

{{ $bank['bank_requisites'] }}
@endif
@endsection