Commit f338db50 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #888 from TommyC81/patch-3

Documentation on how to attach data to pivot table
parents 03ad47e2 f77b22eb
...@@ -318,6 +318,10 @@ However, you may often only want to insert a new record into the intermediate ta ...@@ -318,6 +318,10 @@ However, you may often only want to insert a new record into the intermediate ta
$user->roles()->attach($role_id); $user->roles()->attach($role_id);
It's also possible to attach data for fields in the intermediate table (pivot table), to do this add a second array variable to the attach command containing the data you want to attach:
$user->roles()->attach($role_id, array('expires' => $expires));
<a name="sync-method"></a> <a name="sync-method"></a>
Alternatively, you can use the `sync` method, which accepts an array of IDs to "sync" with the intermediate table. After this operation is complete, only the IDs in the array will be on the intermediate table. Alternatively, you can use the `sync` method, which accepts an array of IDs to "sync" with the intermediate table. After this operation is complete, only the IDs in the array will be on the intermediate table.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment