попробуйте этот код:
создайте класс sendPasswordResetNotification с помощью artisan
php artisan make:notification sendPasswordResetNotification
sendPasswordResetNotification class:
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
class sendPasswordResetNotification extends Notification
{
use Queueable;
public $token;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct($token)
{
$this->token = $token;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
$mail = (new MailMessage)
->line('You are receiving this email because we received a password reset request for your account.')
->action('Reset Password', url(config('app.url').route('password.reset', $this->token, false)))
->line('If you did not request a password reset, no further action is required.');
}
}
Теперь модель вашего клиента выглядит следующим образом:
namespace App;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notifiable;
use App\Notifications\sendPasswordResetNotification;
class Customer extends Model
{
use Notifiable;
public function sendPasswordResetNotification($token)
{
$this->notify(new sendPasswordResetNotification($token));
}
}
второй способ отправки почты с помощью контроллера
Customer::find($id)->notify(new sendPasswordResetNotification($token));