恕我直言,当前在 Laravel 中保存通知的数据库通道的设计非常糟糕:
- 例如,您不能在项目上使用外键级联来清理已删除项目的通知
- 在列中搜索自定义属性
data
(转换为数组)不是最佳的
您将如何DatabaseNotification
在供应商包中扩展模型?
我想将列event_id
、、question_id
(user_id
创建通知的用户)等添加到默认的 laravelnotifications
表中
您如何覆盖该send
函数以包含更多列?
在:
vendor/laravel/framework/src/Illuminate/Notifications/Channels/DatabaseChannel.php
编码:
class DatabaseChannel
{
/**
* Send the given notification.
*
* @param mixed $notifiable
* @param \Illuminate\Notifications\Notification $notification
* @return \Illuminate\Database\Eloquent\Model
*/
public function send($notifiable, Notification $notification)
{
return $notifiable->routeNotificationFor('database')->create([
'id' => $notification->id,
'type' => get_class($notification),
\\I want to add these
'user_id' => \Auth::user()->id,
'event_id' => $notification->type =='event' ? $notification->id : null,
'question_id' => $notification->type =='question' ? $notification->id : null,
\\End adding new columns
'data' => $this->getData($notifiable, $notification),
'read_at' => null,
]);
}
}