whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
Recruit
/
Notifications
/
Upload File:
files >> /home/kckglobal/www/portal/Modules/Recruit/Notifications/OfferLetterReject.php
<?php namespace Modules\Recruit\Notifications; use App\Notifications\BaseNotification; use Modules\Recruit\Entities\RecruitJob; use Modules\Recruit\Entities\RecruitJobApplication; class OfferLetterReject extends BaseNotification { private $jobApplication; private $job; /** * Create a new notification instance. * * @return void */ public function __construct(RecruitJob $job, RecruitJobApplication $jobApplication) { $this->job = $job; $this->jobApplication = $jobApplication; $this->company = $this->job->company; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $via = []; if ($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(__('recruit::modules.offerReject.subject')) ->greeting(__('email.hello') . ' ' . $notifiable->full_name . '!') ->line(__('recruit::modules.offerReject.text') . ' - ' . $this->job->title) ->line(__('recruit::modules.email.thankyouNote')); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray() { return [ 'data' => $this->jobApplication->toArray() ]; } }
Copyright ©2021 || Defacer Indonesia