芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/app/Notifications/RemovalRequestAdminNotification.php
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 [ // ]; } }