Skip to content

Instantly share code, notes, and snippets.

@matiit
Created October 7, 2012 19:58
Show Gist options
  • Save matiit/3849399 to your computer and use it in GitHub Desktop.
Save matiit/3849399 to your computer and use it in GitHub Desktop.
forelse in laravel template
<?php
/*
* Very nice and usefull!
*/
@forelse ($users as $user)
{{ $user->name }}
@empty
<p>There are no users.</p>
@endforelse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment