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

use Illuminate\Database\Eloquent\Model;

class Game extends Model {
    
    protected $table = 'games';
    protected $fillable = ['title'];

}