Skip to content

Instantly share code, notes, and snippets.

@kezadias
Created April 26, 2015 08:35
Show Gist options
  • Save kezadias/9a93643da5cc771f8e93 to your computer and use it in GitHub Desktop.
Save kezadias/9a93643da5cc771f8e93 to your computer and use it in GitHub Desktop.
Hejsan :-)
<ul class="list-group">
@foreach($folders as $folder)
@if(is_dir($folder))
<div class="form-group">
<a href="/{{ $folder }}" class="list-group-item clearfix">{{ $folder }}
<form action="#" method="POST">
<button type="submit" class="btn btn-danger btn-xs pull-right">Delete</button>
</form>
</a>
</div>
@endif
@endforeach
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment