for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Translatable\Exceptions;
use Exception;
use Illuminate\Database\Eloquent\Model;
class AttributeIsNotTranslatable extends Exception
{
public static function make($key, Model $model)
$translatable = implode(', ', $model->getTranslatableAttributes());
return new static("Cannot translate attribute `{$key}` as it's not one of the translatable attributes: `$translatable`");
}