forked from miguel456/rbrecruiter
15 lines
202 B
PHP
15 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Mpociot\Teamwork\TeamworkTeam;
|
||
|
|
||
|
class Team extends TeamworkTeam
|
||
|
{
|
||
|
public $fillable = [
|
||
|
'owner_id',
|
||
|
'name'
|
||
|
];
|
||
|
}
|