@extends('layouts.payment') @section('title') @lang('Payment Checkout') @endsection @section('content')
@csrf
Payment To {{$payment->merchant->business_name}}
Amount {{$payment->currency->symbol.amount($payment->amount,$payment->currency->type,2)}}
Details : {{Str::limit($payment->details,30, '...')}}
@lang('Select Gateway')
@lang('OR')
@lang('Cancel Payment')
@endsection @php $paystack = App\Models\PaymentGateway::where('keyword','paystack')->first()->convertAutoData(); @endphp @push('script') @endpush