-
I've given the framework a bit of a restructure so it main files are outside of the web root by default and the only files that should be inside the web root are the templates, .htaccess and index.php…
-
Was this supposed to work?
```
class Mail {}
class Model extends Eloquent {
public function __construct(array $attributes = array(), Mail $mailer) {
$this->mailer = $mailer;
pa…
-
Apparently, `DataObject->getRemoteJoinField()` has a flaw in it preventing you from having two separate relations from a parent to the same child object. It appears this may only affect the `3.1` bran…
-
``` php
-
Simple code snippet:
```
$mapper = new \DB\SQL\Mapper($db,$table);
$auditer = new \Observor($mapper);
$mapper->load(['fk=?',1]);
while ($mapper->valid()) {
$mapper->erase();
$mapper->next(…
-
http://jsonapi.org
-
I am currently using Laravel 4.2.
I have a Order belonging to a User :
```
class Order extend Eloquent
{
public function user ()
{
return $this->belongTo('User');
}
}
```
And…
-
_Firstly I'm aware of the scope and implications of this feature request._
_Secondly I'm aware of the existence of Doctrine._
**I propose an ORM layer that follows the data mapper pattern with an "el…
-
I was reading the Laravel's Eloquent ORM to do [issue 3](3) and found out that Eloquent ORM has automatic timestamp feature on creation and updating of a record. However, it expects the name to be 'cr…
zawau updated
9 years ago
-
Hello Sylius.
Just began planning a route to use the Sylius components in a Laravel e-commerce project some of us want to begin working on. We would love to work together for the mutual benefit of bo…