|ItemAttr newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr newQuery() * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr query() * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereApply($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereBody($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereEar($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereFoots($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereHead($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv1($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv2($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv3($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv4($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv5($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereNeck($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereProb($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereShield($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereWeapon($value) * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereWrist($value) * @mixin \Eloquent */ class ItemAttr extends Model { /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * The table associated with the model. * * @var string */ protected $table = 'item_attr'; /** * The primary key for the model. * * @var string */ protected $primaryKey = 'apply'; /** * 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 = [ ]; }