Laravel Queue doesnt run as background
问题 hi i created a laravel queue job to send mails public function handle() { foreach($this->emails as $value) { $to = $value->email; $subject = $this->data['subject']; $this->data['t_firstname'] = $value->firstname; $this->data['t_lastname'] = $value->lastname; if (view()->exists('mail.requirement_to_tutor')) { $view = view('mail.requirement_to_tutor',$this->data); $html = $view->render(); } file_put_contents('test.txt', 'test database'); $body = $html; $headers = "From: " . $this->data['from']