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.'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'title' => "Servers suspended!", 'content' => "
Your servers have been suspended!

To automatically re-enable your server/s, you need to purchase more credits.

If you have any questions please let us know.

Regards,
" . config('app.name', 'Laravel') . "

", ]; } }