Skip to content

Instantly share code, notes, and snippets.

View Laratipsofficial's full-sized avatar

Laratips Laratipsofficial

  • Nepal
View GitHub Profile
@Laratipsofficial
Laratipsofficial / lateral join.md
Last active February 10, 2024 02:07
Implementing lateral join in Laravel

Implementing lateral join in Laravel

Making of joinLateral macro

use Illuminate\Database\Query\Builder;
use Illuminate\Database\Query\Expression

Builder::macro('joinLateral', function ($query, $as, $type = 'inner') {
    [$query, $bindings] = $this->createSub($query);