| 1 | <?php |
||
| 9 | class TeamInvite extends Model |
||
| 10 | { |
||
| 11 | use TeamworkTeamInviteTrait; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * The database table used by the model. |
||
| 15 | * |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $table; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Creates a new instance of the model. |
||
| 22 | * |
||
| 23 | * @param array $attributes |
||
| 24 | */ |
||
| 25 | public function __construct(array $attributes = []) |
||
| 30 | } |
||
| 31 |