![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/vendor/laravel/cashier/src/Notifications/ |
<?php namespace Laravel\Cashier\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) ->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); } }