LMongo\Eloquent\Model::fillable PHP Method

fillable() public method

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