fix: add missing hasTranslation method to AboutMe model

This commit is contained in:
DevOps 2026-06-28 17:41:38 +00:00
parent 223a4f5640
commit 1a75055dd9

View File

@ -37,6 +37,12 @@ public function getTranslation(string $key, string $locale, bool $useFallbackLoc
return null;
}
public function hasTranslation(string $key, string $locale): bool
{
$translations = $this->translations;
return isset($translations[$key][$locale]);
}
public function getTitleAttribute()
{
return $this->translations['title'] ?? null;