芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/app/Mail/BulkShiftEmail.php
dateRange = $dateRange; $this->userId = $userId; $this->company = $company; Config::set('app.logo', $company->masked_logo_url); } /** * 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, 'company' => $this->company, ]); } }