| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | trait HasDatabaseNotifications |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Get the entity's notifications. |
||
| 15 | */ |
||
| 16 | public function notifications() |
||
| 17 | { |
||
| 18 | if (env('DB_CONNECTION') === 'mongodb') { |
||
| 19 | $notificationClass = \Foundation\Models\MongoDatabaseNotification::class; |
||
| 20 | } else { |
||
| 21 | $notificationClass = \Illuminate\Notifications\DatabaseNotification::class; |
||
| 22 | } |
||
| 23 | return $this->morphMany($notificationClass, 'notifiable') |
||
|
|
|||
| 24 | ->orderBy('created_at', 'desc'); |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get the entity's read notifications. |
||
| 29 | */ |
||
| 30 | public function readNotifications() |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Get the entity's unread notifications. |
||
| 38 | */ |
||
| 39 | public function unreadNotifications() |
||
| 43 | } |
||
| 44 | } |
||
| 45 |