2015-06-09 75 views
1

我有一個公司表和一個屬性表,其中包含各種價值。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

如果我明白你想要做什麼,我認爲這會解決你的問題。您擁有的問題是屬性模型是模型的新實例,而不是檢索您需要的模型。

從屬性運行填充()方法之前嘗試此

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

然後運行填充()

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

謝謝,用得好好的,怎麼做的第一()方法的工作原理究竟? – Liam

+1

第一種方法將第一個數據庫從數據庫中退出,以便只接收所需的一個對象。如果需要訪問數據庫中的多個數據庫,請使用get()方法並對這些對象進行foreach –