Created
April 5, 2018 19:07
-
-
Save Inzman/1ba171e9a57bceea6fecb8c6c1f7ed93 to your computer and use it in GitHub Desktop.
After every X
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
| foreach (array_chunk($users_kicks, 4, true) as $array) { | |
| echo '<div>'; | |
| foreach($array as $kicks) { | |
| echo $kicks->brand; | |
| } | |
| echo '</div>'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment