26 lines
558 B
PHP
Executable File
26 lines
558 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models\Observers;
|
|
|
|
use App\Models\Bookmark;
|
|
use App\Notifications\UnreadItemsChanged;
|
|
use Illuminate\Support\Facades\Notification;
|
|
|
|
class BookmarkObserver
|
|
{
|
|
/**
|
|
* Handle the bookmark "created" event.
|
|
*/
|
|
public function created(Bookmark $bookmark)
|
|
{
|
|
Notification::send($bookmark->folder->group->activeUsers, new UnreadItemsChanged(['documents' => [$bookmark->document->id]]));
|
|
}
|
|
|
|
/**
|
|
* Handle the bookmark "deleting" event.
|
|
*/
|
|
public function deleting(Bookmark $bookmark)
|
|
{
|
|
}
|
|
}
|