参考:
消息通知
Prepare notification database
1 | php artisan notifications:table |
Generate notification class
1 | php artisan make:notification |
app/Notifications/TopicReplied
1 |
|
Get all notifications,use Notifiable trait
1 | $notifications = $user->notifications()->paginate(20); |
MarkAsRead
1 | $user->unreadNotifications->markAsRead(); |