aboutsummaryrefslogtreecommitdiff
path: root/src/CamilStaps/BotleaguesApi/Competition.php
blob: a8da665bcd4bc77287b697799b0d12f4f183d746 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
namespace CamilStaps\BotleaguesApi;

use Illuminate\Database\Eloquent\Model;

class Competition extends Model {
    
    protected $table = 'competitions';
    protected $hidden = [];
    protected $fillable = ['gameId', 'title', 'description', 'competition_type', 'start', 'end', 'max_players'];

}