|
<?php
|
|
|
|
namespace App\Classc;
|
|
|
|
|
|
trait ScenicTrait
|
|
{
|
|
public static function bootScenicTrait()
|
|
{
|
|
static::deleting(function ($model) {
|
|
if (method_exists($model, 'isForceDeleting') && ! $model->isForceDeleting()) {
|
|
return;
|
|
}
|
|
|
|
$model->tags()->detach();
|
|
});
|
|
}
|
|
} |