I have just upgraded my 5.2 install of laravel to 5.3 and then to 5.4 following the official upgrading methods.
5.2
5.3
5.4
I am now tryin
You could try the following:
class WelcomeCandidate extends Mailable { use Queueable, SerializesModels; public $message; public function __construct(User $user) { $this->user = $user; $this->message = (object) array('image' => '/path/to/file'); } }