/
home
/
sditechnicalteam
/
public_html
/
app
/
Notifications
/
File Upload :
llllll
Current File: //home/sditechnicalteam/public_html/app/Notifications/RemovalRequestAdminNotification.php
<?php namespace App\Notifications; class RemovalRequestAdminNotification extends BaseNotification { /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $via = array(); if ($notifiable->email_notifications && $notifiable->email != '') { array_push($via, 'mail'); } return $via; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return parent::build() ->subject(__('email.removalRequestAdmin.subject') . ' ' . config('app.name') . __('!')) ->greeting(__('email.hello') . ' ' . mb_ucwords($notifiable->name) . __('!')) ->line(__('email.removalRequestAdmin.text')); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ //phpcs:ignore public function toArray($notifiable) { return [ // ]; } }
Copyright ©2k19 -
Hexid
|
Tex7ure