megahunt.test/app/HasHistory.php

12 lines
149 B
PHP
Raw Permalink Normal View History

2024-08-29 23:50:29 +02:00
<?php
namespace App;
trait HasHistory
{
public static function bootHasHistory()
{
static::observe(HistoryObserver::class);
}
}