rbrecruiter/app/Team.php

23 lines
363 B
PHP
Raw Normal View History

2020-09-10 18:05:26 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Mpociot\Teamwork\TeamworkTeam;
class Team extends TeamworkTeam
{
public $fillable = [
'owner_id',
2020-10-03 20:36:35 +00:00
'name',
'description',
'openJoin'
2020-09-10 18:05:26 +00:00
];
public function vacancies()
{
return $this->belongsToMany('App\Vacancy', 'team_has_vacancy');
}
2020-09-10 18:05:26 +00:00
}