We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Obviously not a game-breaker, but Eloquent's smart plurality does not extend to hasMany(), which just feels awkward gramatically. Example:
<?php class Group extends Eloquent { public function subscribers() { return $this->hasMany('Subscriber'); } }