Skip to content

Persaeus/laravel-join-using

Repository files navigation

Laravel JOIN USING 🖇️

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package adds support for the USING directive in join constraints for Laravel query builder.

Installation

You can install the package via composer:

composer require nihilsen/laravel-join-using

Usage

use Illuminate\Support\Facades\DB;
use Nihilsen\LaravelJoinUsing\JoinUsingClause;

$query = DB::table('left_table')->rightJoin(
    'right_table',
    fn (JoinUsingClause $join) => $join->using('shared_column')
);

echo $query->toSql() // select * from "left_table" right join "right_table" using ("shared_column")

Credits

License

The MIT License (MIT). Please see License File for more information.

About

Add support for the USING directive in join constraints for Laravel query builder.

Topics

Resources

License

Stars

Watchers

Forks

Contributors 3

  •  
  •  
  •  

Languages