<?php
namespace Komma\KMS\ActionLog;
use Illuminate\Database\Eloquent\Relations\MorphMany;
trait HasActionLogs
{
/**
* @return MorphMany
*/
public function actionLogs()
{
return $this->morphMany(ActionLog::class, 'authenticatable');
}
}