Laravel:如何在邮件中更改“收件人”字段?

I found in the docs how to change the name of the sender but not where to specify the to field. I also did not find anything in the config/mail.php file.

When I send something to user Max Mustermann like this:

$user = \App\User::where('name','=','Mustermann')
                   ->where('vorname','=','Max')->first();
\Mail::to($user)->send(new Mail());

the mail will be send to

Mustermann < test@email.net >

but I want to send it to

Max Mustermann < test@email.net >

Where can I change this setting?

Mail::send('emails.welcome', ['key' => 'value'], function($message){
$message->to('foo@example.com', 'John Smith')->subject('Welcome!'); 
});

From the docs Laravel 5 docs