123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace App\Observers;
- use App\Notification;
- use App\ModLog;
- use App\Services\ModLogService;
- use Log;
- class ModLogObserver
- {
- /**
- * Handle the mod log "created" event.
- *
- * @param \App\ModLog $modLog
- * @return void
- */
- public function created(ModLog $modLog)
- {
- ModLogService::boot()->load($modLog)->fanout();
- }
- /**
- * Handle the mod log "updated" event.
- *
- * @param \App\ModLog $modLog
- * @return void
- */
- public function updated(ModLog $modLog)
- {
- ModLogService::boot()->load($modLog)->fanout();
- }
- /**
- * Handle the mod log "deleted" event.
- *
- * @param \App\ModLog $modLog
- * @return void
- */
- public function deleted(ModLog $modLog)
- {
- ModLogService::boot()->load($modLog)->unfanout();
- }
- /**
- * Handle the mod log "restored" event.
- *
- * @param \App\ModLog $modLog
- * @return void
- */
- public function restored(ModLog $modLog)
- {
- ModLogService::boot()->load($modLog)->fanout();
- }
- /**
- * Handle the mod log "force deleted" event.
- *
- * @param \App\ModLog $modLog
- * @return void
- */
- public function forceDeleted(ModLog $modLog)
- {
- ModLogService::boot()->load($modLog)->unfanout();
- }
- }
|