ok

Mini Shell

Direktori : /home2/selectio/www/fms-worksuite/app/Notifications/
Upload File :
Current File : //home2/selectio/www/fms-worksuite/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)
    {
        $build = parent::build();

        $content = __('email.removalRequestAdmin.text');

        return $build
            ->subject(__('email.removalRequestAdmin.subject') . ' ' . config('app.name') . __('!'))
            ->markdown('mail.email', [
                'content' => $content,
                'notifiableName' => $notifiable->name
            ]);
    }

    /**
     * Get the array representation of the notification.
     *
     * @param mixed $notifiable
     * @return array
     */
    //phpcs:ignore
    public function toArray($notifiable)
    {
        return [
            //
        ];
    }

}

Zerion Mini Shell 1.0