user = $user; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['database']; } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'title' => "Getting started!", 'content' => "

Hello {$this->user->name}, Welcome to our dashboard!

Verification

Please verify your email address to get " . Configuration::getValueByKey('CREDITS_REWARD_AFTER_VERIFY_EMAIL') . " extra credits and increase your server limit to " . Configuration::getValueByKey('SERVER_LIMIT_REWARD_AFTER_VERIFY_EMAIL') . "
You can also verify your discord account to get another " . Configuration::getValueByKey('CREDITS_REWARD_AFTER_VERIFY_DISCORD') . " credits and to increase your server limit again with " . Configuration::getValueByKey('SERVER_LIMIT_REWARD_AFTER_VERIFY_DISCORD') . "

Information

This dashboard can be used to create and delete servers.
These servers can be used and managed thru our pterodactyl panel.
If you have any questions, please join our Discord and #create-a-ticket.

We hope you can enjoy this hosting experience and if you have any suggestions please let us know!

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

", ]; } }