xuanhoa88 / laravel-eloquent by xuanhoa88

Extends Laravel Eloquent ORM.
91
2
3
Package Data
Maintainer Username: xuanhoa88
Maintainer Contact: xuan.0211@gmail.com (XuaNguyen)
Package Create Date: 2016-12-30
Package Last Update: 2017-01-03
Language: PHP
License: MIT
Last Refreshed: 2024-03-28 03:12:54
Package Statistics
Total Downloads: 91
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 3
Total Forks: 1
Total Open Issues: 0

Eloquent Joins

StyleCI Build Status Total Downloads Latest Stable Version Latest Unstable Version License

This package allows you to simply call $model->join($relation) to join a Laravel Eloquent relationship's table on the keys declared by your relationship. Columns will be selected automatically, and the joined records hydrated as models in the resulting collection. Laravel's Eloquent does support joins normally, but internally calls the underlying query builder, thereby expecting the name of a table and keys to join it on as arguments.

Installation

Eloquent Joins is installable with Composer via Packagist.

Usage

Use trait

Simply use Llama\Database\Eloquent\ModelTrait in a model:

namespace App;

use Llama\Database\Eloquent\ModelTrait;

class User
{
    use ModelTrait;

    protected $table = 'users';

    public function orders()
    {
        return $this->hasMany(\App\Order::class);
    }
}

$users = \App\User::join('orders')->get();

In the above example, $users will contain a collection of all the User models with a corresponding Order model (since we've performed an inner join). Each corresponding Order model can be found in the $orders property on the User model (normally this would contain a collection of models with a matching foreign key).

You can string multiple join() calls, as well as use the other types of join normally available on the underlying query object (joinWhere(), leftJoin(), etc.).

Licence

Eloquent Joins is free and gratis software licensed under the [MIT licence]. This allows you to use Eloquent Joins for commercial purposes, but any derivative works (adaptations to the code) must also be released under the same licence.