Taylor Otwell
b0eb9a8b42
Fix bugs in Eloquent.
2013-01-05 16:45:34 -06:00
Taylor Otwell
13a1c5daac
Merge pull request #1170 from kapv89/patch-4
...
Added a method to fluently set belongs-to relation
2013-01-05 13:51:39 -08:00
Taylor Otwell
10b8732583
Merge pull request #1434 from franzliedke/patch-59
...
My take at #1198
2013-01-05 12:28:00 -08:00
Taylor Otwell
eb5d68f201
Merge pull request #1531 from jasonlewis/eloquent/bug/find
...
Allow find to be called anywhere on an Eloquent Model
2013-01-05 11:43:11 -08:00
JoostK
fd1b76a296
Added ability to call Eloquent::with on a Relationship instance
...
Signed-off-by: JoostK <joost.koehoorn@gmail.com>
2012-12-18 16:21:06 +01:00
Jason Lewis
a422e06989
Find no longer needs to be defined on the model since the query catches it correctly.
...
Signed-off-by: Jason Lewis <jason.lewis1991@gmail.com>
2012-12-18 19:21:05 +11:00
Jason Lewis
a68d2242d3
Add the find method to the Eloquent Query class.
...
Signed-off-by: Jason Lewis <jason.lewis1991@gmail.com>
2012-12-18 19:14:51 +11:00
Phill Sparks
8296f30c82
Update laravel/database/eloquent/model.php
...
Make query() available publicly via object and statically.
2012-11-27 12:33:01 +00:00
Franz Liedke
ff4b43c72f
Ignore hidden relationships in to_array().
2012-11-23 03:23:13 +01:00
Franz Liedke
172ebcb00d
Fix Pivot table losing its connection.
...
This hopefully fixes #1198 and while it doesn't solve the underlying problem mentioned in #1429 , it does the tackle the resulting mess. :)
2012-11-09 02:15:28 +01:00
Jason Lewis
1a7f2bf27f
Merge pull request #1352 from laravie/patch/code-standard
...
[Code Standard] Slight improvement to use of tab over space and curly bracket
2012-10-20 07:29:39 -07:00
Franz Liedke
2d052a3222
Get rid of duplicate function call.
2012-10-17 18:28:42 +03:00
Franz Liedke
a6c681db39
Make sure sync() always works with arrays.
2012-10-17 18:27:35 +03:00
crynobone
fd86aef25a
Trivial improvement to Laravel, while it is not documented, it has been a standard in Laravel to use tab as indentation and new line for curly bracket
...
Signed-off-by: crynobone <crynobone@gmail.com>
2012-10-15 23:35:53 +08:00
Taylor Otwell
3416506194
increment version. refactor eloquent eager loading matching.
2012-10-07 14:04:29 -05:00
Taylor Otwell
1df8fa91fc
Merge pull request #1322 from vFragosop/eloquent/relationship_performance
...
Fixing has_one iterations
2012-10-07 11:56:24 -07:00
Vinícius Fragoso
f6c7cf2dcd
Fixing pivot on has_one aswell as properly indenting
2012-10-07 12:15:57 -03:00
Taylor Otwell
790a540620
Merge pull request #1294 from danielboendergaard/phpdoc-fix
...
Fixed wrong return type in phpdoc
2012-10-06 12:39:23 -07:00
Vinícius Fragoso
f36446bd10
Improving laravel relationship performance
2012-10-05 10:35:48 -03:00
Daniel Bøndergaard
54397e1bf2
Fixed wrong return type in phpdoc
...
Signed-off-by: Daniel Bøndergaard <db@helmstmt.com>
2012-09-28 10:10:35 +02:00
Taylor Otwell
02cb96a008
fix bug in eloquent model.
2012-09-27 17:44:03 -04:00
Taylor Otwell
fc9b0e1636
Merge pull request #1201 from JoostK/fix-1
...
Fixed a problem with `Eloquent::get_dirty`
2012-09-25 18:37:09 -07:00
RK
f148f6211c
Fixing the array_get misspelling.
2012-09-24 10:35:07 -04:00
RK
258169ea00
[ #1261 ] get_key now pulls from $original instead
...
This is in reference to issue #1261 , where Model->get_key() returns
the key from the $attributes instead of from the $original property.
This breaks the functionality of a model with a primary key that may
change, as the SQL generated will be something like:
UPDATE `model` SET `key` = 'new-key' WHERE `key` = 'new-key';
Which won't update the model in the database.
2012-09-24 09:58:20 -04:00
JoostK
5f99c81035
Fixed a problem whith `Eloquent::get_dirty`
...
When you had a synched Eloquent model (e.g. without changed values) but
one of those values is `null`, then that value would be considered as
dirty. `Eloquent::changed` returns false, but the value is present in
`Eloquent::get_dirty`.
This fix makes sure that a `null` value in `$attributes` is only
present in `get_dirty` when it wasn't at all *set* in `$original`.
2012-09-09 20:52:33 +02:00
kapil verma
2773e317ea
Removed a Useless if conditional from bind method
2012-09-04 02:54:21 +05:30
kapil verma
55ad4e9a6d
Added a method to fluently set belongs-to relation
...
This method spun off from a discussion in IRC. What this enables is this:
$user->comments()->insert($comment_data)->article()->bind($article->id)
2012-09-04 02:40:28 +05:30
Callum McIntyre
6b73974505
Added new touch function to eloquent, updates timestamps and immediately saves
...
Signed-off-by: Callum McIntyre <mcintyre1994@gmail.com>
2012-09-03 21:44:16 +01:00
Taylor Otwell
852b10e836
Merge pull request #1143 from franzliedke/patch-38
...
Fix insert() method for related models.
2012-09-01 18:02:41 -07:00
Taylor Otwell
db48fa4140
Merge pull request #1121 from mcintyre94/minor/unprotect-eloquent-timestamps
...
Minor/unprotect eloquent timestamps
2012-09-01 17:52:53 -07:00
Taylor Otwell
4a60981582
Merge pull request #1084 from joecwallace/pivot_fix
...
Fixing a bug with saving data to pivot table
2012-09-01 17:40:14 -07:00
Taylor Otwell
46f68ab78c
Merge pull request #813 from anaxamaxan/patch-3
...
Allow Model instance or id for first argument in Has_Many_And_Belongs_To::attach()
2012-09-01 16:52:36 -07:00
Taylor Otwell
f34063c517
Fix bug in Eloquent to_array method.
2012-08-29 14:44:16 -05:00
Franz Liedke
e46f07d436
Fix method signature and return values of insert() method.
2012-08-27 13:46:32 +03:00
Franz Liedke
aa341357ec
Fix insert() method for related models.
2012-08-26 01:10:31 +03:00
Callum McIntyre
f8fdcd894a
Changed timestamp function in eloquent/model.php to public
2012-08-19 15:15:42 +01:00
Taylor Otwell
1203473469
revert eloquent back to 3.2.3
2012-08-17 09:18:16 -05:00
Taylor Otwell
9718d5cd0d
fix nested queries.
2012-08-17 09:02:32 -05:00
Joe Wallace
d31f89d42f
Fixing a bug with saving data to pivot table
2012-08-09 22:10:49 -05:00
Sergii Grebeniuk
690e8572aa
phpdoc fixes
2012-08-03 18:17:48 +03:00
Dayle Rees
2c6ed23b45
fixing merge issues
2012-07-27 13:52:15 +01:00
Dayle Rees
3b09f99f9e
Merge pull request #989 from dprvig/develop
...
Fixed various typos throughout laravel folder.
2012-07-27 03:54:40 -07:00
Josh Miller
0ea30993d4
Fixed various typos throughout laravel folder.
...
Signed-off-by: Josh Miller <josh@joshmmiller.com>
2012-07-21 20:18:55 -04:00
Franz Liedke
78920c5d27
Move automatic relationship parsing to Eloquent's query class.
2012-07-12 22:32:43 +02:00
Franz Liedke
8c2a4fba14
The Eloquent model includes can now be taken directly from the model when assembling the query.
2012-07-12 23:20:17 +03:00
Franz Liedke
71f8e4acc0
Fix a bug introduced in pull request #799 that caused eager loading constraints to stop working.
2012-07-12 23:16:22 +03:00
Chris Berthe
b325e954e3
Merge remote-tracking branch 'upstream/develop' into develop
2012-07-12 11:15:43 -04:00
Taylor Otwell
1879e6575a
tweak eloquent model change method to not check types.
2012-07-10 08:02:08 -05:00
Taylor Otwell
e6ff7ba336
Merge pull request #901 from franzliedke/patch-18
...
Ignore NULL values when determining whether a model object is dirty
2012-07-06 17:07:58 -07:00
Taylor Otwell
a9d27ba79c
Merge pull request #902 from JesseObrien/feature/eloquent-update-timestamp
...
Feature/eloquent update timestamp
2012-07-06 17:07:34 -07:00