<?php namespace CamilStaps\BotleaguesApi; use Illuminate\Database\Eloquent\Model; class Participant extends Model { protected $table = 'competition_types'; protected $hidden = []; protected $fillable = ['botId', 'competitionId']; }