fixed logo

This commit is contained in:
2025-05-08 13:03:09 +05:45
parent 50258a116a
commit ea35db2164
5 changed files with 41 additions and 18 deletions

View File

@ -16,4 +16,9 @@ class Company extends Model
'logo',
'website',
];
public function employees()
{
return $this->hasMany(Employee::class);
}
}