1 | <?php |
||
9 | class TeamworkTeam extends Model |
||
10 | { |
||
11 | use TeamworkTeamTrait; |
||
12 | |||
13 | /** |
||
14 | * The database table used by the model. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $table; |
||
19 | |||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | protected $fillable = ['name', 'owner_id']; |
||
24 | |||
25 | /** |
||
26 | * Creates a new instance of the model. |
||
27 | * |
||
28 | * @param array $attributes |
||
29 | */ |
||
30 | public function __construct(array $attributes = []) |
||
35 | } |
||
36 |