Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
73d4b0b2
Commit
73d4b0b2
authored
Oct 20, 2012
by
Jason Lewis
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1363 from franzliedke/patch-55
Many-to-many sync: always work with arrays
parents
aa902def
2d052a32
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
has_many_and_belongs_to.php
...tabase/eloquent/relationships/has_many_and_belongs_to.php
+2
-1
No files found.
laravel/database/eloquent/relationships/has_many_and_belongs_to.php
View file @
73d4b0b2
...
...
@@ -121,6 +121,7 @@ class Has_Many_And_Belongs_To extends Relationship {
public
function
sync
(
$ids
)
{
$current
=
$this
->
pivot
()
->
lists
(
$this
->
other_key
());
$ids
=
(
array
)
$ids
;
// First we need to attach any of the associated models that are not currently
// in the joining table. We'll spin through the given IDs, checking to see
...
...
@@ -140,7 +141,7 @@ class Has_Many_And_Belongs_To extends Relationship {
if
(
count
(
$detach
)
>
0
)
{
$this
->
detach
(
array_diff
(
$current
,
$ids
)
);
$this
->
detach
(
$detach
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment