nihilsen/laravel-join-using

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

Downloads

77

Stars

3

Version

v0.1.0

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.

nihilsen

Author

nihilsen