Illuminate\Database\Eloquent\Model::fillable PHP Method

fillable() public method

Set the fillable attributes for the model.
public fillable ( array $fillable )
$fillable array
    public function fillable(array $fillable)
    {
        $this->fillable = $fillable;
        return $this;
    }
Model