whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
app
/
Mail
/
Upload File:
files >> /home/kckglobal/public_html/portal/app/Mail/BulkShiftEmail.php
<?php namespace App\Mail; use App\Models\EmployeeShiftSchedule; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class BulkShiftEmail extends Mailable implements ShouldQueue { use Queueable, SerializesModels; public $dateRange; public $userId; /** * Create a new message instance. * * @return void */ public function __construct($dateRange, $userId) { $this->dateRange = $dateRange; $this->userId = $userId; } /** * Build the message. * * @return $this */ public function build() { $employeeShifts = EmployeeShiftSchedule::with('shift') ->whereIn('date', $this->dateRange) ->where('user_id', $this->userId) ->get(); return $this->subject(__('email.shiftScheduled.subject')) ->markdown('mail.bulk-shift-email', [ 'employeeShifts' => $employeeShifts ]); } }
Copyright ©2021 || Defacer Indonesia