Laravel更新生成新表规则而不是更新

时间:2015-06-09 10:24:55

标签: php mysql laravel

我有一个公司表和一个包含各种值的属性表。

一家公司拥有多个属性,一个属性属于公司。

现在我在属性表中有一个带有'account_nr_start'的值(例如,当一个新用户被添加到公司时,其account_id从1000开始计数)。

控制器:

public function __construct(Company $company, User $user)
{
    if(Auth::user()->usertype_id == 7)
    {
        $this->company = $company;
    }
    else
    {
        $this->company_id = Auth::user()->company_id;
        $this->company  = $company->Where(function($query)
        {
            $query->where('id', '=', $this->company_id )
                ->orWhere('parent_id','=', $this->company_id);
        }) ;
    }

    $this->user = $user;

    $this->middleware('auth');
}



public function edit(Company $company, CompaniesController $companies)
{
    $companies = $companies->getCompaniesName(Auth::user()->company_id);

    $attributes = $company->attributes('company')
        ->where('attribute', '=', 'account_nr_start')
        ->get();

    foreach ($attributes as $k => $v) {
        $nr_start[] = $v->value;
    }

    return view('company.edit', ['company' => $company, 'id' => 'edit', 'companies' => $companies, 'nr_start' => $nr_start]);
}



public function update(UpdateCompanyRequest $request, $company, Attribute $attributes)
{
        $company->fill($request->input())->save();

        $attributes->fill($request->only('company_id', 'attribute_nr', 'value'))->save();

        return redirect('company');
}

HTML /刀片:

<div class="form-group {{ $errors->has('_nr_') ? 'has-error' : '' }}">
    {!! HTML::decode (Form::label('account_nr_start', trans('common.account_nr_start').'<span class="asterisk"> *</span>', ['class' => 'form-label col-sm-3 control-label text-capitalize'])) !!}
    <div class="col-sm-6">
        {!! Form::text('value', $nr_start[0], ["class"=>"form-control text-uppercase"]) !!}
        {!! $errors->first('account_nr_start', '<span class="help-block">:message</span>') !!}
    </div>
</div>

当我立即更新公司时,它会像上次输入一样上传:enter image description here

因此它创建了一个新规则,同时它需要编辑当前属性规则,而不是使用空的company_id / attribute创建新规则。

1 个答案:

答案 0 :(得分:1)

如果我明白你要做什么,我想这会解决你的问题。您遇到的问题是属性模型是模型的新实例,而不是检索您需要的模型。

在从属性方法运行fill()之前试试这个

$new_attribute = $attributes->where('company_id', '=', $company->id)->where('attribute', '=', 'account_nr_start')->first();

然后运行fill()

$new_attribute->fill($request->only('company_id', 'attribute_nr', 'value'))->save();