当数据存储在数据库中时显示通知,但是当我想创建通知时。出现这个错误
use Queueable;
public $user;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct($user)
{
$this->user = $user;
}
public function via($notifiable)
{
return ['database'];
}
public function toDatabase($notifiable)
{
return [
'name' => $this->user->name,
'email' => $this->user->email,
];
}
你的类必须扩展“Illuminate\Notifications\Notification”,注意不要使用“Illuminate\Support\Facades\Notification”。
将其添加到文件顶部。
使用照亮\通知\通知;