laravel-mongodb icon indicating copy to clipboard operation
laravel-mongodb copied to clipboard

A MongoDB based Eloquent model and Query builder for Laravel (Moloquent)

Results 183 laravel-mongodb issues
Sort by recently updated
recently updated
newest added

I'm using the query to organize places by location but return only a few columns/fields from each object in the collection. Based on my understanding of Mongo queries, the raw...

"jenssegers/mongodb": "^3.4" artisan queue:retry all Does not find any failed jobs even when there are some present. Error: No failed job matches the given ID [].

bug
duplicate
Needs investigation
tracked-in-jira

- Laravel-mongodb Version: v3.8.1 - PHP Version: 7.4.9 - Laravel Version: v8.15.0 - Database Driver & Version: jenssegers/mongodb v3.8.1 ### Description: Trying to get property 'id' of non-object on vendor/laravel/framework/src/Illuminate/Bus/DatabaseBatchRepository.php:256...

Needs investigation
tracked-in-jira

- Laravel-mongodb Version: 3.8.4 - PHP Version: 8.0.3 - Database Driver & Version: mongodb 1.18.0 Hello, Some help would be appreciated to handle an hybrid MongoDB/MySQL relation. I have a...

I want to store data with model but i always get validation error ``` 'mongodb_encrypt' => [ 'driver' => 'mongodb', 'dsn' => env('MONGO_DB_DSN','mongodb://localhost:27017/?readPreference=primary'), 'database' => 'test', 'options' => [ 'useUnifiedTopology'=>...

### Is your feature request related to a problem? A clear and concise description of what the problem is. ### Describe the solution you'd like A clear and concise description...

I have this relations: ``` public function empresa(): belongsTo { return $this->belongsTo(App\Models\Empresa::class); } public function user(): belongsTo { return $this->belongsTo(App\Models\User::class); } public function originUser(): belongsTo { return $this->belongsTo(App\Models\User::class, 'origin_user'); }...

- Laravel: 8.60.0 - mongodb Version: 3.8.4 - PHP Version: 8.0.10 - Database Driver & Version: mongodb-1.10.0 ### Description: Hello, Im using laravel with mongoDB and having a poblem while...

Commit e19e10a in this PR updates existing tests to use a 'multi-word' relation for the morph relationship. This means that: - `imageable` is changed to `has_image` when passed as the...

Needs work

- Laravel-mongodb Version: 8 - PHP Version: 7.4 - Database Driver & Version: ### Description: Full example in this SO question: https://stackoverflow.com/questions/69260901/jensseger-belongstomany-returns-nothing-when-selecting-fields Created a BelongsToMany relationship, tried to filter related...