Skip to content

Commit fbd4dd4

Browse files
committed
Clean up imports
1 parent 6354bc1 commit fbd4dd4

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/controllers/FolderController.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
use Illuminate\Support\Facades\Config;
55
use Illuminate\Support\Facades\File;
66
use Illuminate\Support\Facades\Input;
7-
use Illuminate\Support\Facades\Redirect;
8-
use Illuminate\Support\Str;
97
use Illuminate\Support\Facades\Session;
108
use Illuminate\Support\Facades\View;
11-
use Illuminate\Support\Facades\Log;
9+
use Illuminate\Support\Str;
1210

1311
/**
1412
* Class FolderController

src/views/images.blade.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55

66
@foreach($directories as $key => $dir)
77
<div class="col-sm-6 col-md-2">
8-
<div class="thumbnail text-center" data-id="{{ basename($dir) }}">
8+
<div class="thumbnail text-center";" data-id="{{ basename($dir) }}">
99
<a id="large_folder_{{ $key }}" data-id="{{ $dir }}"
1010
onclick="clickFolder('large_folder_{{ $key }}',1)"
1111
class="folder-icon pointer">
12+
{{--<i class="fa fa-folder-o fa-5x"></i>--}}
1213
<img src="/vendor/laravel-filemanager/img/folder.jpg">
1314
</a>
1415
</div>

0 commit comments

Comments
 (0)