12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace App\Observers;
- use App\Notification;
- use App\ModLog;
- use App\Services\ModLogService;
- use Log;
- class ModLogObserver
- {
- /**
- * Handle events after all transactions are committed.
- *
- * @var bool
- */
- public $afterCommit = true;
- /**
- * 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();
- }
- }
|