blob: 65e1261140c9f7bb4011b6e872e91eba30561023 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace CamilStaps\BotleaguesApi;
use Illuminate\Database\Eloquent\Model;
class Participant extends Model {
protected $table = 'competition_types';
protected $hidden = [];
protected $fillable = ['botId', 'competitionId'];
}
|