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

27 lines
483 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)
{
//
}
2018-01-01 08:32:20 +00:00
public function saving(Topic $topic)
{
2018-01-01 12:18:33 +00:00
$topic->body = clean($topic->body, 'user_topic_body');
2018-01-01 08:32:20 +00:00
$topic->excerpt = make_excerpt($topic->body);
}
2018-01-01 04:00:45 +00:00
public function updating(Topic $topic)
{
//
}
}