PATH:
home
/
lab2454c
/
.trash
/
core
/
resources
/
views
/
templates
/
basic
/
user
/
payment
@extends($activeTemplate.'layouts.frontend') @section('content') <section class="dashboard-section pt-60 pb-60"> <div class="container"> <div class="pt-60 pb-60"> <div class="row"> <div class="col-xl-3"> @include($activeTemplate . 'partials.sidebar') </div> <div class="col-xl-9"> <div class="mb-4 d-xl-none text-end"> <div class="sidebar__init"> <i class="las la-columns"></i> </div> </div> <div class="card card-deposit custom--card"> <div class="card-body"> <div class="img"> <img src="{{$deposit->gatewayCurrency()->methodImage()}}" class="card-img-top" alt="@lang('Image')" class="w-100"> </div> <div class="text-center mt-4"> <h6 class="mt-4">@lang('Please Pay') {{showAmount($deposit->final_amo)}} {{__($deposit->method_currency)}}</h6> <h6 class="my-3">@lang('To Get') {{showAmount($deposit->amount)}} {{__($general->cur_text)}}</h6> <button type="button" class="cmn--btn" id="btn-confirm">@lang('Pay Now')</button> </div> </div> </div> </div> </div> </div> </div> </section> @endsection @push('script') <script src="//pay.voguepay.com/js/voguepay.js"></script> <script> "use strict"; var closedFunction = function() { } var successFunction = function(transaction_id) { window.location.href = '{{ route(gatewayRedirectUrl()) }}'; } var failedFunction=function(transaction_id) { window.location.href = '{{ route(gatewayRedirectUrl()) }}' ; } function pay(item, price) { //Initiate voguepay inline payment Voguepay.init({ v_merchant_id: "{{ $data->v_merchant_id}}", total: price, notify_url: "{{ $data->notify_url }}", cur: "{{$data->cur}}", merchant_ref: "{{ $data->merchant_ref }}", memo:"{{$data->memo}}", recurrent: true, frequency: 10, developer_code: '60a4ecd9bbc77', custom: "{{ $data->custom }}", customer: { name: 'Customer name', country: 'Country', address: 'Customer address', city: 'Customer city', state: 'Customer state', zipcode: 'Customer zip/post code', email: 'example@example.com', phone: 'Customer phone' }, closed:closedFunction, success:successFunction, failed:failedFunction }); } (function ($) { $('#btn-confirm').on('click', function (e) { e.preventDefault(); pay('Buy', {{ $data->Buy }}); }); })(jQuery); </script> @endpush
[-] Razorpay.blade.php
[edit]
[-] StripeV3.blade.php
[edit]
[-] crypto.blade.php
[edit]
[+]
..
[-] redirect.blade.php
[edit]
[-] deposit.blade.php
[edit]
[-] Voguepay.blade.php
[edit]
[-] Stripe.blade.php
[edit]
[-] Flutterwave.blade.php
[edit]
[-] StripeJs.blade.php
[edit]
[-] Paystack.blade.php
[edit]
[-] preview.blade.php
[edit]