回答編集履歴
1
リンクに修正しました。
answer
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
https://github.com/laravel/framework/blob/5.3/src/Illuminate/Foundation/Auth/User.php
|
1
|
+
[https://github.com/laravel/framework/blob/5.3/src/Illuminate/Foundation/Auth/User.php](https://github.com/laravel/framework/blob/5.3/src/Illuminate/Foundation/Auth/User.php)
|
2
2
|
↓
|
3
|
-
https://github.com/laravel/framework/blob/5.3/src/Illuminate/Auth/Passwords/CanResetPassword.php
|
3
|
+
[https://github.com/laravel/framework/blob/5.3/src/Illuminate/Auth/Passwords/CanResetPassword.php](https://github.com/laravel/framework/blob/5.3/src/Illuminate/Auth/Passwords/CanResetPassword.php)
|
4
4
|
↓
|
5
|
-
https://github.com/laravel/framework/blob/5.3/src/Illuminate/Auth/Notifications/ResetPassword.php のtoMailメソッド
|
5
|
+
[https://github.com/laravel/framework/blob/5.3/src/Illuminate/Auth/Notifications/ResetPassword.php](https://github.com/laravel/framework/blob/5.3/src/Illuminate/Auth/Notifications/ResetPassword.php) のtoMailメソッド
|
6
6
|
↓
|
7
|
-
https://github.com/laravel/framework/blob/5.3/src/Illuminate/Notifications/Messages/MailMessage.php
|
7
|
+
[https://github.com/laravel/framework/blob/5.3/src/Illuminate/Notifications/Messages/MailMessage.php](https://github.com/laravel/framework/blob/5.3/src/Illuminate/Notifications/Messages/MailMessage.php)
|
8
8
|
にて、標準だとviewメソッドが呼ばれないため標準の情報が返ってきているのだと思います。
|
9
9
|
そのため、
|
10
10
|
src/Illuminate/Auth/Notifications/ResetPassword.phpをオーバーライドして、toMailメソッドの内容をお好みに書き変えてしまうと良いと思います。
|