I am trying to fix an update process, I have the following model that has belongs to relationship with other models and tables:
protected $table = 'voting_results';
protected $fillable = ['proceding_id', 'candidate_id', 'politicparty_id', 'total'];
From the form, I am sending the data in the following way:
{!! Form::model($electoralrecord, ['method' => 'PATCH','route' => ['electoralrecords.update', $electoralrecord->id], 'enctype' => 'multipart/form-data']) !!}
<input type="number" class="form-control" id="total" name="total[]" value="{{ $candidate->total }}" placeholder="Values">
<button class="btn btn-success" type="submit" data-toggle="tooltip" rel="tooltip" data-placement="top" title="Guardar cambios"><i data-feather="save"></i> Save</button>
{!! Form::close() !!}
In the controller I am receiving and trying to update the data in the table like this:
public function update(Request $request, $id)
{
$data = $request->all();
$ids = $request->id[0];
$totals = $request->total[0];
DB::table('voting_results')->where('id', $ids)
->update(array(['total' => $totals]));
return redirect()->route('electoralrecords.index')
->with('success','Record update!!!');
}
But it returns ErrorException (E_NOTICE) Array to string conversion.
Someone who can guide me, because I have tried to do the conversion to store the array data.
Making a dd of the variable $ data, this is the result:
array:4 [▼
"_method" => "PATCH"
"_token" => "dHZlKbY1x2xOteQ31pPIMkmwQc3BfHIRWrXlKU87"
"id" => "1"
"total" => array:27 [▼
0 => "12"
1 => "10"
2 => "0"
3 => "0"
4 => "0"
5 => "0"
6 => "0"
7 => "0"
8 => "0"
9 => "0"
10 => "0"
11 => "0"
12 => "0"
13 => "0"
14 => "0"
15 => "0"
16 => "0"
17 => "0"
18 => "0"
19 => "0"
20 => "0"
21 => "0"
22 => "0"
23 => "0"
24 => "0"
25 => "0"
26 => "4"
]
]
This is a Schema and relationships
Schema::create('voting_results', function (Blueprint $table) {
$table->increments('id');
$table->integer('proceding_id')->unsigned()->nullable();
$table->foreign('proceding_id')
->references('id')
->on('proceedings')
->onDelete('cascade');
$table->integer('candidate_id')->unsigned()->nullable();
$table->foreign('candidate_id')
->references('id')
->on('candidates')
->onDelete('cascade');
$table->integer('politicparty_id')->unsigned()->nullable();
$table->foreign('politicparty_id')
->references('id')
->on('politicparty')
->onDelete('cascade');
$table->string('total');
$table->timestamps();
});