for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Activitylog\Exceptions;
use Exception;
class CouldNotLogChanges extends Exception
{
public static function invalidAttribute($attribute)
return new static("Cannot log attribute `{$attribute}`. Can only log attributes of a model or a directly related model.");
}