A couple of times when I had to write an application on laravel 5 and I have to send a mail, almost every single time I run into issues passing data to my mail views, and I have to go back to my old codes to find out How I passed data previously, after doing this again a couple of days I decided to document it, might help someone too.
The way to go about this is to inject an instance of a model while instantiating the send mail class. like so:
public static function clientSendUserMail($Request, $id){