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
75f63847
Commit
75f63847
authored
Mar 30, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix eloquent->delete bug.
parent
b870ac09
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
model.php
laravel/database/eloquent/model.php
+13
-0
has_many_and_belongs_to.php
...tabase/eloquent/relationships/has_many_and_belongs_to.php
+1
-3
No files found.
laravel/database/eloquent/model.php
View file @
75f63847
...
@@ -378,6 +378,19 @@ abstract class Model {
...
@@ -378,6 +378,19 @@ abstract class Model {
return
$result
;
return
$result
;
}
}
/**
* Delete the model from the database.
*
* @return int
*/
public
function
delete
()
{
if
(
$this
->
exists
)
{
return
$this
->
query
()
->
where
(
static
::
$key
,
'='
,
$this
->
get_key
())
->
delete
();
}
}
/**
/**
* Set the update and creation timestamps on the model.
* Set the update and creation timestamps on the model.
*
*
...
...
laravel/database/eloquent/relationships/has_many_and_belongs_to.php
View file @
75f63847
...
@@ -125,9 +125,7 @@ class Has_Many_And_Belongs_To extends Relationship {
...
@@ -125,9 +125,7 @@ class Has_Many_And_Belongs_To extends Relationship {
*/
*/
public
function
delete
()
public
function
delete
()
{
{
$id
=
$this
->
base
->
get_key
();
return
$this
->
pivot
()
->
delete
();
return
$this
->
joining_table
()
->
where
(
$this
->
foreign_key
(),
'='
,
$id
)
->
delete
();
}
}
/**
/**
...
...
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