mongor icon indicating copy to clipboard operation
mongor copied to clipboard

Mongo ORM support for Laravel 3 bundle

Results 8 mongor issues
Sort by recently updated
recently updated
newest added

for someone completely new to laravel - could you add some examples how to use it properly? thanks! :) (also, is this the goto mongodb bundle or are there others?)

Enabling profiling in `application/config/application.php` and `application/config/database.php` results in the profiler content being duplicated at the bottom of the page. Commenting out `\Laravel\Profiling\Profiler::attach()` in `MongoProfiler::attach()` fixes the issue.

Mongor\Model::_first() returns object with empty attributes instead of NULL when no document is found. As a result there is an exception in mongoauth.php (line 39) when non-existing user tries to...

How can I implement the where clause by passing an array of values to it? ``` php Model::where('field', array(1,2,3,4,5))->sort('field')->get(); ``` Any help is appreciated.

So I was looking at the number of new mongodb instances created, and subsequent mongo socket connections created when using hydrate and I made a small change that seems to...

this is what I get after following all the instructions when I do a $user->get(array("codition"=>"something")) where user is my model: Unhandled Exception Message: couldn't determine master Location: /mnt/www/jscore_latest/bundles/mongor/hydrator.php on line...

Method "retrieve" in MongoAuth works not good enough. When session ends var $id will be string not a MongoId object, to fix this just do next: ``` public function retrieve($id)...

Hi, When I try to use a Validator in my Mongor/Model Like so : $validation = Validator::make($input, $rules); I get this error message : Unhandled Exception Message: Undefined index: driver...