Last active
April 3, 2016 10:27
-
-
Save lazychaser/aff4855668ec86da4017266c15e66282 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$lang = 'de'; | |
$rootId = 1; | |
$categories = Category::whereDescendantOf($rootId) | |
->leftJoin('category_translations as tr', 'tr.category_id', '=', 'categories.id') | |
->where('tr.code', '=', $lang) | |
->get([ 'categories.*', 'tr.name' ]) | |
->toTree(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment