mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 08:32:14 +00:00
backend language strings updates
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?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'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user