JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrTestMail.php000064400000001031150364312370006776 0ustar00markdown('email.test_mail')->subject('Nice Subject - '.env('APP_NAME')); } } PromotionSend.php000064400000001235150364312370010062 0ustar00promotion = $promotion; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.promotion_send')->with('promotion', $this->promotion)->subject('Ragarding to job promotion congratulation letter.'); } } ResignationSend.php000064400000001234150364312370010355 0ustar00resignation = $resignation; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.resignation_send')->with('resignation', $this->resignation)->subject('Ragarding to resignation letter.'); } } TerminationSend.php000064400000001234150364312370010364 0ustar00termination = $termination; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.termination_send')->with('termination', $this->termination)->subject('Ragarding to termination letter.'); } } WarningSend.php000064400000001170150364312370007477 0ustar00warning = $warning; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.warning_send')->with('warning', $this->warning)->subject('Ragarding to warning letter.'); } } LeaveActionSend.php000064400000001237150364312370010270 0ustar00leave = $leave; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.leave_action_send')->with('leave', $this->leave)->subject('Ragarding to approval letter to approve or reject a vacation or leave.'); } } TicketSend.php000064400000001173150364312370007320 0ustar00ticket = $ticket; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.ticket_send')->with('ticket', $this->ticket)->subject('Ragarding to employee ticket generated.'); } } TransferSend.php000064400000001273150364312370007662 0ustar00transfer = $transfer; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.transfer_send')->with('transfer', $this->transfer)->subject('Ragarding to transfer letter to be issued to an employee from one location to another.'); } } TripSend.php000064400000001135150364312370007011 0ustar00trip = $trip; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.trip_send')->with('trip', $this->trip)->subject('Ragarding to trip letter.'); } } AwardSend.php000064400000001200150364312370007122 0ustar00award = $award; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.award_send')->with('award', $this->award)->subject('Ragarding to award letter to recognize an employee.'); } } UserCreate.php000064400000001231150364312370007320 0ustar00user = $user; } /** * Build the message. * * @return $this */ public function build() { return $this->markdown('email.user_create')->subject('Login details - ' . env('APP_NAME'))->with('user', $this->user); } } PayslipSend.php000064400000001264150364312370007517 0ustar00payslip = $payslip; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.payslip_send')->with('payslip', $this->payslip)->subject('Your ' . date('M Y',strtotime($this->payslip->salary_month)). ' payslip is generated.'); } } CommonEmailTemplate.php000064400000001545150364312370011162 0ustar00template = $template; $this->settings = $settings; $this->mailTo = $mailTo; } /** * Build the message. * * @return $this */ public function build() { return $this->from($this->settings['mail_from_address'], $this->settings['mail_from_name'])->markdown('email.common_email_template')->subject($this->template->subject)->with('content', $this->template->content); } }ComplaintsSend.php000064400000001227150364312370010206 0ustar00complaints = $complaints; } /** * Build the message. * * @return $this */ public function build() { return $this->view('email.complaints_send')->with('complaints', $this->complaints)->subject('Ragarding to job complaints letter.'); } }