How can i pass data from my Controller to my customized mail View ?
Here\'s my controller\'s send mail method :
The callback argument can be used to further configure the mail. Checkout the following example:
Mail::send('emails.dept_manager_strategic-objectives', ['email' => $email], function ($m) use ($user) {
$m->from('info@primapluse.com', 'BusinessPluse');
$m->to($user, 'admin')->subject('Your Reminder!');
});