crate new project

This commit is contained in:
2025-11-19 09:25:17 +03:30
parent d441ebd0b4
commit 5672c6eb0d
11 changed files with 161 additions and 45 deletions

View File

@@ -62,4 +62,11 @@ class Harim extends Model
},
);
}
public function latestDescription()
{
return $this->hasMany(HarimHistory::class)
->latestOfMany()
->value('expert_description');
}
}