当然可以。
php artisan make:model Notification
然后更改模型以扩展 laravel 的默认通知模型。
<?php
namespace App;
use Illuminate\Notifications\DatabaseNotification;
class Notification extends DatabaseNotification
{
public function users()
{
return $this->belongsTo(User::class, 'notifiable_id');
}
}
Run Code Online (Sandbox Code Playgroud)
然后您可以在此通知模型中定义您的关系。
或者,您可以使用用户发布关系删除通知
$post->user->notifications->delete()
| 归档时间: |
|
| 查看次数: |
4714 次 |
| 最近记录: |