laravel-learn-bbs/app/Observers/TopicObserver.php

21 lines
312 B
PHP
Raw Normal View History

2018-01-01 04:00:45 +00:00
<?php
namespace App\Observers;
use App\Models\Topic;
// creating, created, updating, updated, saving,
// saved, deleting, deleted, restoring, restored
class TopicObserver
{
public function creating(Topic $topic)
{
//
}
public function updating(Topic $topic)
{
//
}
}