blob: c355c08927b37355ea6b4b3bedf9b36193fdcb17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace CamilStaps\BotleaguesApi\Database;
class Competition extends Model {
protected $table = 'competitions';
protected $hidden = [];
protected $fillable = ['gameId', 'title', 'description', 'competition_type', 'start', 'end', 'max_players'];
}
|