laravel 消息通知模块下 消息的删除示例写法错误
消息通知模块里关于可以使用 delete 方法从表中整个删除通知里的代码示例有误
$user->notifications()->delete();
这里需要改成
$user->notifications()->each->delete();
才可以正常使用,否则会提示以下错误
local.ERROR: Method Illuminate\Notifications\DatabaseNotificationCollection::delete does not exist