/home/techb158/immovalet.com/platform/plugins/blog/src/Models
Edit: /home/techb158/immovalet.com/platform/plugins/blog/src/Models/Tag.php (1209B)
BaseStatusEnum::class,
];
/**
* @return BelongsToMany
*/
public function posts(): BelongsToMany
{
return $this->belongsToMany(Post::class, 'post_tags');
}
protected static function boot()
{
parent::boot();
self::deleting(function (Tag $tag) {
$tag->posts()->detach();
});
}
}