数据库通知
概述
开始前,请确保将 Laravel 通知表添加到数据库中:
php artisan notifications:table
如果你用的是 PostgreSQL,请确保迁移中
data
字段使用json()
:$table->json('data')
。
如果你的
User
模型中使用了 UUID,请确保你的notifiable
字段使用uuidMorphs()
:$table->uuidMorphs('notifiable')
。
要将数据库通知添加到应用中,你必须在你的 Blade 布局中添加一个新的 Livewire 组件:
@livewire('database-notifications')