Cross Join Query in Laravel 5
To perform a “cross join” use the crossJoin method with the name of the table you wish to cross join to. Cross joins generate a Cartesian product between the first table and the joined table. Let’s create a crossJoin method…