refactor: rename InternshipStatus model to InternshipStatusData

This commit is contained in:
2025-11-29 12:32:43 +01:00
parent 5b86f2e355
commit b79c76d947
8 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ class Internship extends Model
public function status()
{
return $this->hasOne(InternshipStatus::class, 'internship_id')->latestOfMany();
return $this->hasOne(InternshipStatusData::class, 'internship_id')->latestOfMany();
}
/**