@extends('layouts/contentLayoutMaster') @section('title', __('locale.labels.purchase')) @section('vendor-style') @endsection @section('page-style') @endsection @section('content')
@csrf @if ($errors->any()) @foreach ($errors->all() as $error) @endforeach @endif
{{ __('locale.menu.Subscriptions') }}
{!! __('locale.subscription.log_subscribe', ['plan' => $plan->name]) !!}
{{ __('locale.plans.price') }} {{ \App\Library\Tool::format_price($plan->price, $plan->currency->format) }}
{{ __('locale.labels.tax') }} ({{ \App\Library\Tool::calculateTaxPercentage($totalAmount,$taxAmount) }}%) {{ \App\Library\Tool::format_price($taxAmount, $plan->currency->format) }}
{{ __('locale.labels.total_price') }} {{ \App\Library\Tool::format_price($totalAmount, $plan->currency->format) }}
{{ __('locale.labels.renew') }} {{ __('locale.labels.every') }} {{ $plan->displayFrequencyTime() }}
{{ __('locale.labels.sms_credit') }} {{ $plan->displayTotalQuota() }}
{{ __('locale.customer.sender_id_verification') }} @if($plan->getOption('sender_id_verification') == 'yes') {{__('locale.labels.yes')}} @else {{__('locale.labels.no')}} @endif
{{ __('locale.labels.api_access') }} @if($plan->getOption('api_access') == 'yes') {{__('locale.labels.yes')}} @else {{__('locale.labels.no')}} @endif
{{ __('locale.labels.address') }}
{{ __('locale.labels.billing_address') }}
{{ __('locale.labels.payment_options') }}
{{ __('locale.payment_gateways.click_on_correct_option') }}
    @foreach($payment_methods as $method)
  • @endforeach
@endsection @section('vendor-script') @endsection @section('page-script') @endsection