Created
December 17, 2014 10:12
-
-
Save goranprijic/c578acb0086e8cd85179 to your computer and use it in GitHub Desktop.
Check if table is already joined in Laravel Query Builder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class BaseModel extends Eloquent { | |
public static function isJoined($query, $table) | |
{ | |
$joins = $query->getQuery()->joins; | |
if($joins == null) { | |
return false; | |
} | |
foreach ($joins as $join) { | |
if ($join->table == $table) { | |
return true; | |
} | |
} | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this snippet, very useful
This method detects all kinds of joins (
leftJoin()
,join()
, etc.)Clarifying just in case someone else was wondering!