[WIP] Order process
This commit is contained in:
28
app/Notifications/ResetPassword.php
Normal file
28
app/Notifications/ResetPassword.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Notifications;
|
||||
|
||||
use Illuminate\Notifications\Messages\MailMessage;
|
||||
|
||||
class ResetPassword extends \Illuminate\Auth\Notifications\ResetPassword
|
||||
{
|
||||
/**
|
||||
* Get the mail representation of the notification.
|
||||
*
|
||||
* @param mixed $notifiable
|
||||
* @return \Illuminate\Notifications\Messages\MailMessage
|
||||
*/
|
||||
public function toMail($notifiable)
|
||||
{
|
||||
return (new MailMessage())
|
||||
->markdown('boilerplate::notifications.email')
|
||||
->greeting(__('boilerplate::notifications.greeting', ['firstname' => $notifiable->first_name]))
|
||||
->subject(__('boilerplate::notifications.resetpassword.subject'))
|
||||
->line(__('boilerplate::notifications.resetpassword.intro'))
|
||||
->action(
|
||||
__('boilerplate::notifications.resetpassword.button'),
|
||||
route('Shop.password.reset', $this->token)
|
||||
)
|
||||
->line(__('boilerplate::notifications.resetpassword.outro'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user