Created
June 14, 2013 14:01
-
-
Save lukearmstrong/5782028 to your computer and use it in GitHub Desktop.
Laravel 4 Pagination for a "Many to Many" relationship.
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
$company = \Company::find($companyId) | |
->with('users') | |
->first(); | |
$users = $company->users()->paginate(10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment