I'm building a small application on Laravel 5.4
and facing a little difficulty in syncing
the pivot table
in many to many relationship
, I went through this link and not understood properly,
I'm having a pivot table which is mandatory field(I mean it will have field). I'm having a relationship something like this:
class Interaction extends Model
{
public function clientsAssociation()
{
return $this->belongsToMany('App\Contact', 'contact_client_interaction', 'interaction_id', 'contact_id')->withPivot('company_id')->withTimestamps();
}
}
I'm getting an array with set of values related to sync to these models. I'm confused how to place pivot data and while updating:
foreach ($data['clientParticipants'] as $clientParticipant)
{
if(array_key_exists('company_id', $clientParticipant))
{
$contact[] = Contact::find(json_encode($clientParticipant['value']));
$pivotData = ['company_id' => $clientParticipant['company_id']];
}
else
{
$contact[] = Contact::find(json_encode($clientParticipant['value']));
$pivotData = ['company_id' => Contact::find(json_encode($clientParticipant['value']))->company()->withPivot('created_at')->orderBy('pivot_created_at', 'desc')->first()->id])];
}
$interaction->clientsAssociation()->sync($contact);
}
Guide me to achieve this. Thanks