. */ namespace App; use Mpociot\Teamwork\TeamworkTeam; class Team extends TeamworkTeam { public $fillable = [ 'owner_id', 'name', 'description', 'openJoin', ]; public function vacancies() { return $this->belongsToMany('App\Vacancy', 'team_has_vacancy'); } public function files() { return $this->hasMany('App\TeamFile', 'team_id'); } }