@extends('gateways.main') @section('content')

{{ __('Unpaid') }}
@if(Session::has('error'))
@endif @if(Session::has('min-max'))
@endif @if(Session::has('errors')) @foreach ($errors->all() as $error)
@endforeach @endif
@foreach($gateways as $key => $gateway)
@endforeach
@foreach($gateways as $key => $gateway)
@csrf
@if($gateway->currency != null) @endif @if($gateway->charge != 0) @endif
{{ __('Method Name: ') }} {{ $gateway->name }}
{{ __('Gateway Currency: ') }} {{ strtoupper($gateway->currency) }}
{{ __('Gateway Charge: ') }} {{ $gateway->charge }}
{{ __('Payble Amount: ') }} {{ $total*$gateway->multiply+$gateway->charge }}
@if($gateway->comment != null)
{{ __('Payment Instruction: ') }}
{!! $gateway->comment !!}
@endif @if($gateway->phone_required == 1)
@endif @if($gateway->is_auto == 0)
@endif
@endforeach
{{ __('Invoiced To') }}
{{ Auth::user()->name }}
{{ Auth::user()->address }}
{{ __('Pay To') }}
{{ $invoice_data->company_name }}
{{ $invoice_data->address }}
{{ $invoice_data->city }}
{{ $invoice_data->post_code }}
{{ $invoice_data->country }}
{{ __('Description') }} {{ __('Amount') }}
- {{ $plan->title }} {{ amount_format($plan->price,'name') }}
{{ __('Sub Total') }}: {{ amount_format($plan->price,'name') }}
{{ __('Tax') }}: {{ amount_format($tax,'name') }}
Total: {{ amount_format($total,'name') }}
{{ __('Cancel Payment') }}
@endsection @push('js') @endpush