Наследование: extends Illuminate\Database\Eloquent\Model, use trait Dimsav\Translatable\Translatable
 public function test_it_should_mutate_the_translated_attribute_if_a_mutator_is_set_on_model()
 {
     $person = new Person(['name' => 'john doe']);
     $person->save();
     $person = Person::find(1);
     $this->assertEquals('John doe', $person->name);
 }