我想要实现的目标是为 Laravel Notifications 创建一个数据库播种器。至于我使用数据库来存储我的通知,应该有一种方法来实现它。我正在创建工厂模型:
$user->notify(new NotificationEvent($event));
实际上它在数据库中创建了一个通知,但是工匠返回错误
[Symfony\Component\Debug\Exception\FatalThrowableError]
Call to undefined method Illuminate\Support\Facades\Notification::save()
有人知道该怎么做吗?