@extends($activeTemplate . 'layouts.master') @section('content') @php $planPrice = $type == 'monthly' ? $plan->monthly_price : $plan->yearly_price; @endphp @csrf @lang('You need to pay') {{ showAmount($planPrice) }} {{ $general->cur_text }} @lang('Select Gateway') @lang('Select One') @foreach ($gatewayCurrency as $data) method_code) data-gateway="{{ $data }}">{{ $data->name }} @endforeach @lang('Charge') 0 {{ __($general->cur_text) }} @lang('Payable') 0 {{ __($general->cur_text) }} @lang('In') 0 @lang('Conversion with') @lang('and final value will Show on next step') @lang('Submit') @lang('Your Selection') @lang('Plan title') {{ __($plan->title) }} @lang('Validity') {{ ucfirst($type) }} @lang('Price') {{ $general->cur_sym . showAmount($planPrice) }} @lang('Expired On') @if ($type == 'monthly') {{ showDateTime(now()->addMonth(), 'd M, Y') }} @else {{ showDateTime(now()->addYear(), 'd M, Y') }} @endif @endsection @push('script') @endpush