Created
April 26, 2015 08:35
-
-
Save kezadias/9a93643da5cc771f8e93 to your computer and use it in GitHub Desktop.
Hejsan :-)
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
<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