@extends('layouts.web.blank') @section('main_content') @foreach ($gateways as $gateway) $loop->first ? true : false])> {{ ucfirst($gateway->name) }} @endforeach @foreach ($gateways as $gateway) $loop->first ? true : false]) id="{{ str_replace(' ', '-', $gateway->name) }}"> @csrf @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif {{ ucfirst($gateway->name) }} ({{ optional($gateway->currency)->code }}) {{ __('Gateway Name') }} {{ $gateway->name }} {{ __('Subscription Name') }} {{ $plan->subscriptionName }} {{ __('Gateway Currency') }} {{ optional($gateway->currency)->code }} {{ __('Gateway Charge') }} {{ currency_format($gateway->charge, currency: $gateway->currency) }} {{ __('Payable Amount') }} {{ currency_format(payable($plan->offerPrice ?? $plan->subscriptionPrice, $gateway), 'icon', currency: $gateway->currency) }} @if ($gateway->phone_required == 1) {{ __('Phone Number') }} @endif @if ($gateway->is_manual) @if ($gateway->accept_img) {{ __('Screenshot/Proof Image') }} @endif @foreach ($gateway->manual_data['label'] ?? [] as $key => $row) {{ $row }} manual_data['is_required'][$key] == 1) class="form-control" placeholder="{{ __('Enter ').$row }}"> @endforeach @endif {{ __('Pay Now') }} @endforeach @endsection @push('css') @endpush