ctrlpanel/app/Notifications/ServersSuspendedNotification.php

70 lines
2 KiB
PHP
Raw Normal View History

2021-06-25 22:24:44 +00:00
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class ServersSuspendedNotification extends Notification implements ShouldQueue
{
use Queueable;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
2021-06-26 14:57:03 +00:00
return ['mail' , 'database'];
2021-06-25 22:24:44 +00:00
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
2021-12-13 14:46:04 +00:00
->subject(__('Your servers have been suspended!'))
->greeting(__('Your servers have been suspended!'))
->line(__("To automatically re-enable your server/s, you need to purchase more credits."))
->action(__('Purchase credits'), route('store.index'))
->line(__('If you have any questions please let us know.'));
2021-06-25 22:24:44 +00:00
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
2021-12-13 14:46:04 +00:00
'title' => __('Your servers have been suspended!'),
2021-06-26 14:57:03 +00:00
'content' => "
2021-12-13 14:46:04 +00:00
<h5>". __('Your servers have been suspended!')."</h5>
<p>". __("To automatically re-enable your server/s, you need to purchase more credits.")."</p>
<p>". __('If you have any questions please let us know.')."</p>
<p>". __('Regards').",<br />" . config('app.name', 'Laravel') . "</p>
2021-06-26 14:57:03 +00:00
",
2021-06-25 22:24:44 +00:00
];
}
}