/
home
/
sditechnicalteam
/
public_html
/
app
/
Mail
/
File Upload :
llllll
Current File: /home/sditechnicalteam/public_html/app/Mail/BulkShiftEmail.php
<?php namespace App\Mail; use App\Models\EmployeeShiftSchedule; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class BulkShiftEmail extends Mailable { 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 ©2k19 -
Hexid
|
Tex7ure