I have a little problem, I need to create friendships system, using 'through' option, but I can not find in documentation how to save extra data in the joint / pivot table.
In Candidates Table (User table)
$this->belongsToMany('Users', [
'foreignKey' => 'requester_id',
'targetForeignKey' => 'recipient_id',
'joinTable' => 'coections',
'through' => 'Coections'
]);
In coections table need to save additional data, (status, baed_by, created, modified,..)
How to do it? if my association set right?
