|Land newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Land newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Land query() * @method static \Illuminate\Database\Eloquent\Builder|Land whereEnable($value) * @method static \Illuminate\Database\Eloquent\Builder|Land whereGuildId($value) * @method static \Illuminate\Database\Eloquent\Builder|Land whereGuildLevelLimit($value) * @method static \Illuminate\Database\Eloquent\Builder|Land whereHeight($value) * @method static \Illuminate\Database\Eloquent\Builder|Land whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|Land whereMapIndex($value) * @method static \Illuminate\Database\Eloquent\Builder|Land wherePrice($value) * @method static \Illuminate\Database\Eloquent\Builder|Land whereWidth($value) * @method static \Illuminate\Database\Eloquent\Builder|Land whereX($value) * @method static \Illuminate\Database\Eloquent\Builder|Land whereY($value) * @mixin \Eloquent */ class Land extends Model { /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * The table associated with the model. * * @var string */ protected $table = 'land'; /** * 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 = [ ]; }