uawdijnntqw1x1x1
IP : 216.73.216.93
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
/
foodbank.codeskitter.site
/
app
/
Notifications
/
ConfirmPayment.php
/
/
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; use Laravel\Cashier\Payment; class ConfirmPayment extends Notification implements ShouldQueue { use Queueable; /** * The PaymentIntent identifier. * * @var string */ public $paymentId; /** * The payment amount. * * @var string */ public $amount; /** * Create a new payment confirmation notification. * * @param \Laravel\Cashier\Payment $payment * @return void */ public function __construct(Payment $payment) { $this->paymentId = $payment->id; $this->amount = $payment->amount(); } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $url = route('cashier.payment', ['id' => $this->paymentId]); return (new MailMessage) ->from(setting('site_email')) ->subject(__('Confirm Payment')) ->greeting(__('Confirm your :amount payment', ['amount' => $this->amount])) ->line(__('Extra confirmation is needed to process your payment. Please continue to the payment page by clicking on the button below.')) ->action(__('Confirm Payment'), $url); } }
/home/users/unlimited/www/foodbank.codeskitter.site/app/Notifications/ConfirmPayment.php