-
Sometimes I see Omnipay V3 being mentioned in the comments, so perhaps best to keep track of it somewhere. So what are the actual changes?
- [x] Bump PHP version to 5.5?
- [x] Use PSR-7 instead of Sym…
-
Say I have this code:
```
use App\Repositories\TestsRepo as Test;
public function show($reference_number, Test $test){
return $shipment->findBy( 'reference_number', $reference_number );
}
```
N…
-
Take an User that has other User as friends. You can currently do `$user->friends->attach($otherUser)` and `$user->friends->detach($otherUser)` but you can't do `$user->friends->toggle($otherUser)` to…
-
Hello,
Do laravel-mongodb have to overwrite `$resolver` in `Jenssegers/Mongodb/Model.php` ?
When I use Eloqent as standalone ORM (without Laravel), this attribute makes problems.
``` php
$capsule = …
-
The main benefit to using an ORM is that you no longer need to write out SQL queries directly which helps speed up development and reduce bugs a lot.
It also allows you to create a nicer interface fo…
-
Hi,
That could be great if there was any possibility of making `delete()` soft : that means creating a field `deleted_at`, making it `null` by default, and setting a date on it when deleting it.
That…
-
Eloquent should have an actual ORM to do things like:
``` python
users = User.all()
user = User.find(1)
users = User.where('votes', '>', 100).take(10).get()
user = User.find(1)
user.email = 'john@…
-
when I user on controller:
$this->load->model('name_of_class'); // name_of_class is model extend ORM
$data['a'] = $this->name_of_class->where('id','>',0)->paginate(2); // Error
error info:
Fatal er…
-
The official docs demonstrate some sub-classes like GraphUser, and the code have another unmentioned classes like GraphAlbum, and many other types still haven't classes at all.
I just want to ask abo…
-
How can I "extend" the Table class?
I tried:
``` swift
import Foundation
import CoreData
extension Table {
...
}
```
but it says use of undeclared type 'Table'. I installed the library by dra…