uawdijnntqw1x1x1
IP : 216.73.216.145
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
learnoid.codeskitter.site
/
database
/
..
/
app
/
Services
/
StripePayment.php
/
/
<?php namespace App\Services; use App\Interfaces\PaymentGatewayInterface; use Stripe\Stripe; class StripePayment implements PaymentGatewayInterface { public function processPayment($amount, array $data, array $config) { Stripe::setApiKey($config['secret_key']); $session = \Stripe\Checkout\Session::create([ 'line_items' => [ [ 'price_data' => [ 'currency' => config('app.currency'), 'product_data' => ['name' => $data['product']['product']], 'unit_amount' => $amount * 100, ], 'quantity' => 1, ] ], 'mode' => 'payment', 'success_url' => route('stripe.payment.success', $data['identifier']), 'cancel_url' => route('stripe.payment.cancel'), ], ['api_key' => $config['secret_key']]); return redirect($session->url); } }
/home/users/unlimited/www/learnoid.codeskitter.site/database/../app/Services/StripePayment.php