@extends('layouts.web.blank') @section('main_content')
@foreach ($gateways as $gateway)
$loop->first ? true : false]) id="{{ str_replace(' ', '-', $gateway->name) }}">
@csrf
@if ($errors->any()) @foreach ($errors->all() as $error) @endforeach @endif
{{ ucfirst($gateway->name) }} ({{ optional($gateway->currency)->code }})
@if ($gateway->phone_required == 1) @endif
{{ __('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->is_manual)
@if ($gateway->accept_img)
@endif @foreach ($gateway->manual_data['label'] ?? [] as $key => $row)
manual_data['is_required'][$key] == 1) class="form-control" placeholder="{{ __('Enter ').$row }}">
@endforeach
@endif
@endforeach
@endsection @push('css') @endpush