LMongo\Eloquent\Model::fillable PHP 메소드

fillable() 공개 메소드

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