mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
27 lines
763 B
PHP
27 lines
763 B
PHP
<?php
|
|
namespace Domain\Subscriptions\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Notifications\Notification;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
|
|
class ChargeFromCreditCardFailedAgainNotification extends Notification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
public function via(): array
|
|
{
|
|
return ['mail'];
|
|
}
|
|
|
|
public function toMail(): MailMessage
|
|
{
|
|
return (new MailMessage)
|
|
->subject(__t('charge_from_card_failed_again_subject'))
|
|
->greeting(__t('hello'))
|
|
->line(__t('charge_from_card_failed_again_line'))
|
|
->action(__t('charge_from_card_failed_again_action'), url('/user/settings/billing'));
|
|
}
|
|
}
|