Skip to content

Instantly share code, notes, and snippets.

@elliotforbes
Created November 4, 2015 20:54
Show Gist options
  • Save elliotforbes/3f04d92170c2028489ca to your computer and use it in GitHub Desktop.
Save elliotforbes/3f04d92170c2028489ca to your computer and use it in GitHub Desktop.
@if (count($articles) === 0)
... html showing no articles found
@elseif (count($articles) >= 1)
... print out results
@foreach($articles as $article)
print article
@endforeach
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment