|GuildHighscoreCache newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache newQuery() * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache query() * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereDate($value) * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereEmpire($value) * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereLadderPoint($value) * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereLevel($value) * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereMaster($value) * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereName($value) * @mixin \Eloquent */ class GuildHighscoreCache extends Model { /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * The table associated with the model. * * @var string */ protected $table = 'guild_highscore_cache'; /** * The primary key for the model. * * @var string */ protected $primaryKey = 'id'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'empire' => EmpireEnum::class, 'date' => 'datetime', ]; }