Merge branch 'staging' into feature/senior-officer

This commit is contained in:
majid
2024-11-06 09:45:37 +07:00
17 changed files with 1427 additions and 296 deletions

View File

@@ -14,7 +14,7 @@ class KondisiBangunan extends Model
/**
* The attributes that are mass assignable.
*/
protected $fillable = ['code', 'name'];
protected $fillable = ['code','name'];
protected static function newFactory(): KondisiBangunanFactory
{

View File

@@ -31,7 +31,7 @@ class Teams extends Model
}
public function penilaianTeam(){
return $this->hasMany(penilaianTeam::class, 'team_id', 'id');
return $this->hasMany(PenilaianTeam::class, 'team_id', 'id');
}