芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/app/Mail/BulkShiftEmail.php
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]); } }