[c6b84df] | 1 | @extends('layouts.app')
|
---|
| 2 |
|
---|
| 3 | @section("title", "SaveSpace - Files")
|
---|
| 4 |
|
---|
| 5 | @section('head')
|
---|
[169fcc8] | 6 |
|
---|
[c6b84df] | 7 | @endsection
|
---|
| 8 |
|
---|
| 9 | @section('content')
|
---|
| 10 |
|
---|
| 11 | <div class="page-header justify-content-between">
|
---|
| 12 | <nav aria-label="breadcrumb" class="d-flex align-items-start">
|
---|
| 13 | <ol class="breadcrumb">
|
---|
| 14 | <li class="breadcrumb-item">
|
---|
| 15 | <a href="{{ url('/') }}">Dashboard</a>
|
---|
| 16 | </li>
|
---|
[aab55f4] | 17 | <li class="breadcrumb-item active" aria-current="page">Departments</li>
|
---|
[c6b84df] | 18 | </ol>
|
---|
| 19 | </nav>
|
---|
| 20 | <div class="dropdown">
|
---|
[0df7a93] | 21 | @if(auth()->user()->hasPermission('manage_all_files'))
|
---|
[aab55f4] | 22 | <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">Add</a>
|
---|
[0df7a93] | 23 | @endif
|
---|
| 24 | @if(auth()->user()->hasPermission('download_data'))
|
---|
[aab55f4] | 25 | <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white">Download</a>
|
---|
[0df7a93] | 26 | @endif
|
---|
| 27 | @if(auth()->user()->hasPermission('export_data'))
|
---|
[aab55f4] | 28 | <a href="{{ route('dashboard.files.export') }}" class="btn btn-success text-white">Export</a>
|
---|
[0df7a93] | 29 | @endif
|
---|
[c6b84df] | 30 | </div>
|
---|
| 31 | </div>
|
---|
| 32 |
|
---|
| 33 | <div class="row">
|
---|
| 34 | <div class="col-md-12">
|
---|
| 35 | <div class="card">
|
---|
| 36 | <div class="card-body">
|
---|
| 37 | <div class="table-responsive">
|
---|
| 38 | <table id="user-list" class="table table-lg">
|
---|
| 39 | <thead>
|
---|
| 40 | <tr>
|
---|
| 41 | <th>
|
---|
| 42 | </th>
|
---|
| 43 | <th>Image</th>
|
---|
| 44 | <th>Name</th>
|
---|
| 45 | <th>Created at</th>
|
---|
| 46 | <th>Updated at</th>
|
---|
| 47 | <th>Folder name</th>
|
---|
| 48 | <th>Folder archive ID</th>
|
---|
| 49 | <th>Directory</th>
|
---|
| 50 | <th>Actions</th>
|
---|
| 51 | </tr>
|
---|
| 52 | </thead>
|
---|
| 53 | <tbody>
|
---|
| 54 | @foreach($files as $file)
|
---|
| 55 | <tr>
|
---|
| 56 | <td></td>
|
---|
| 57 | <td>
|
---|
| 58 | @if(in_array(explode('.', $file->name)[1], $excelExt))
|
---|
| 59 | <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">
|
---|
[90ab388] | 60 | <i class="fa fa-file-excel-o text-success fa-2x"></i>
|
---|
[c6b84df] | 61 | </div>
|
---|
| 62 | @else @if(in_array(explode('.', $file->name)[1], $textExt))
|
---|
| 63 | <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">
|
---|
[90ab388] | 64 | <i class="fa fa-file-word-o text-info fa-2x"></i>
|
---|
[c6b84df] | 65 | </div>
|
---|
| 66 | @else @if(explode('.', $file->name)[1] == 'pdf')
|
---|
| 67 | <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">
|
---|
[90ab388] | 68 | <i class="fa fa-file-pdf-o text-danger fa-2x"></i>
|
---|
[c6b84df] | 69 | </div>
|
---|
| 70 | @else @if(in_array(explode('.', $file->name)[1], $imageExt))
|
---|
[ff5b46e] | 71 | {{-- <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">--}}
|
---|
| 72 | {{-- <a href="{{ url('/storage/' . $file->location) }}" class="image-popup-gallery-item">--}}
|
---|
| 73 | {{-- <div class="image-hover">--}}
|
---|
| 74 | {{-- <img src="{{ url('/storage/' . $file->location) }}" class="rounded" width="30" alt="image">--}}
|
---|
| 75 | {{-- </div>--}}
|
---|
| 76 | {{-- </a>--}}
|
---|
| 77 | {{-- </div>--}}
|
---|
[90ab388] | 78 | <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">
|
---|
| 79 | <i class="fa fa-file-image-o text-danger fa-2x"></i>
|
---|
| 80 | </div>
|
---|
[c6b84df] | 81 | @else
|
---|
[90ab388] | 82 | <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2">
|
---|
| 83 | <i class="fa fa-file-text-o text-warning fa-2x"></i>
|
---|
| 84 | </div>
|
---|
[c6b84df] | 85 | @endif
|
---|
| 86 | @endif
|
---|
| 87 | @endif
|
---|
| 88 | @endif
|
---|
| 89 |
|
---|
| 90 | </td>
|
---|
| 91 | <td>{{ $file->name }}</td>
|
---|
| 92 | <td>{{ date('d.m.Y - H:i', strtotime($file->created_at)) }}</td>
|
---|
| 93 | @if($file->updated_at==NULL)
|
---|
| 94 | <td>/</td>
|
---|
| 95 | @else
|
---|
| 96 | <td>{{ date('d.m.Y - H:i', strtotime($file->updated_at)) }}</td>
|
---|
| 97 | @endif
|
---|
| 98 | <td><a href="{{ route('dashboard.folders.files', ['id' => $file->folder_id]) }}" class="text-linkedin">{{ \App\Models\Folder::find($file->folder_id)->name }}</a></td>
|
---|
| 99 | <td>{{ \App\Models\Folder::find($file->folder_id)->arch_id }}</td>
|
---|
| 100 | <!-- Trigger -->
|
---|
| 101 | <td><button data-clipboard-text="{{$file->location}}" class="btn btn-sm btn-primary text-white" data-toggle="tooltip" data-placement="right" title="{{$file->location}}"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clipboard" viewBox="0 0 16 16">
|
---|
| 102 | <path d="M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z"/>
|
---|
| 103 | <path d="M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3z"/>
|
---|
| 104 | </svg></button>
|
---|
| 105 | </td>
|
---|
[0df7a93] | 106 | @if(auth()->user()->hasPermission('manage_all_files'))
|
---|
[c6b84df] | 107 | <td>
|
---|
| 108 | <a href="{{ route("dashboard.files.downloadFile", ['id' => $file->id]) }}" class="text-danger ml-2"title="Download">
|
---|
| 109 | <i class="ti-download"></i>
|
---|
| 110 | </a>
|
---|
[190db9f] | 111 | @if(auth()->user()->hasPermission('delete_data'))
|
---|
[c6b84df] | 112 | <a href="javascript:void(0)" class="text-danger ml-2" data-toggle="modal" data-target="#deleteModal_{{$file->id}}" title="Delete">
|
---|
| 113 | <i class="ti-trash"></i>
|
---|
| 114 | </a>
|
---|
[190db9f] | 115 | @endif
|
---|
[c6b84df] | 116 | </td>
|
---|
[0df7a93] | 117 | @else
|
---|
| 118 | <td></td>
|
---|
| 119 | @endif
|
---|
[c6b84df] | 120 | </tr>
|
---|
| 121 | <div class="modal fade" id="deleteModal_{{$file->id}}" tabindex="-1" role="dialog" aria-hidden="true">
|
---|
| 122 | <div class="modal-dialog modal-dialog-centered" role="document">
|
---|
| 123 | <div class="modal-content">
|
---|
| 124 | <div class="modal-header">
|
---|
| 125 | <h5 class="modal-title" id="exampleModalCenterTitle">Delete confirmation</h5>
|
---|
| 126 | <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
---|
| 127 | <i class="ti-close"></i>
|
---|
| 128 | </button>
|
---|
| 129 | </div>
|
---|
| 130 | <div class="modal-body">
|
---|
| 131 | <form action="{{ route("dashboard.files.deleteFile", $file->id) }}" method="POST">
|
---|
| 132 | @csrf
|
---|
| 133 | @method('DELETE')
|
---|
| 134 | <p>Are you sure you want to delete file {{$file->name}}?</p>
|
---|
| 135 | <p>Location: <span class="pr-1">{{$file->location}}</span></p>
|
---|
| 136 | <div class="modal-footer">
|
---|
| 137 | <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
|
---|
| 138 | </button>
|
---|
| 139 | <button type="submit" class="btn btn-primary">Save changes</button>
|
---|
| 140 | </div>
|
---|
| 141 | </form>
|
---|
| 142 | </div>
|
---|
| 143 |
|
---|
| 144 | </div>
|
---|
| 145 | </div>
|
---|
| 146 | </div>
|
---|
| 147 |
|
---|
| 148 | @endforeach
|
---|
| 149 |
|
---|
| 150 | </tbody>
|
---|
| 151 | </table>
|
---|
| 152 |
|
---|
[9b4689a] | 153 | </div>
|
---|
| 154 | </div>
|
---|
| 155 | </div>
|
---|
| 156 | </div>
|
---|
| 157 | </div>
|
---|
[c6b84df] | 158 |
|
---|
[9b4689a] | 159 | <div class="modal fade" id="createModal" tabindex="-1" role="dialog" aria-hidden="true">
|
---|
| 160 | <div class="modal-dialog modal-dialog-centered" role="document">
|
---|
| 161 | <div class="modal-content">
|
---|
| 162 | <div class="modal-header">
|
---|
| 163 | <h5 class="modal-title" id="exampleModalCenterTitle">Upload</h5>
|
---|
| 164 | <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
---|
| 165 | <i class="ti-close"></i>
|
---|
| 166 | </button>
|
---|
| 167 | </div>
|
---|
| 168 | <div class="modal-body">
|
---|
| 169 | <form action="{{ route("dashboard.files.store") }}" method="post" accept-charset="utf-8" enctype="multipart/form-data">
|
---|
| 170 | @csrf
|
---|
| 171 | <div class="row">
|
---|
| 172 | <div class="col-md-10">
|
---|
| 173 | <div class="form-group">
|
---|
| 174 | <label for="exampleFormControlSelect1">Folder</label>
|
---|
| 175 | @if($folders->count())
|
---|
| 176 | <select class="form-control" name="folder" required>
|
---|
| 177 | @foreach ($folders as $folder)
|
---|
| 178 | <option value="{{ $folder->id }}" {{ (old("folder") == $folder->id ? "selected" : "") }}>{{ $folder->name }}</option>
|
---|
| 179 | @endforeach
|
---|
| 180 | @else
|
---|
| 181 | <p>You haven't created any folders yet. <a class="text-primary" href="{{ route("dashboard.folders.index") }}">Create now.</a></p>
|
---|
| 182 | @endif
|
---|
| 183 | </select>
|
---|
| 184 | </div>
|
---|
| 185 | </div>
|
---|
| 186 | <div class="col-md-10">
|
---|
| 187 | <div class="form-group">
|
---|
| 188 | <label for="exampleFormControlSelect1">Uploads</label>
|
---|
[c6b84df] | 189 |
|
---|
| 190 |
|
---|
[9b4689a] | 191 | <input type="file" class="form-control" id="file-item" name="file_item[]" accept="{{ $fileTypes }}" multiple>
|
---|
[c6b84df] | 192 | </div>
|
---|
| 193 | </div>
|
---|
| 194 | </div>
|
---|
[9b4689a] | 195 | <br/>
|
---|
| 196 | <div class="modal-footer">
|
---|
| 197 | <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
|
---|
| 198 | </button>
|
---|
| 199 | <button type="submit" class="btn btn-primary">Save changes</button>
|
---|
| 200 | </div>
|
---|
| 201 | </form>
|
---|
[c6b84df] | 202 | </div>
|
---|
[9b4689a] | 203 |
|
---|
[c6b84df] | 204 | </div>
|
---|
| 205 | </div>
|
---|
| 206 | </div>
|
---|
| 207 |
|
---|
| 208 | @endsection
|
---|
| 209 |
|
---|
| 210 | @section('script')
|
---|
| 211 |
|
---|
| 212 | @yield('script')
|
---|
| 213 |
|
---|
| 214 | <script src="{{ url('assets/js/examples/pages/user-list.js') }}"></script>
|
---|
| 215 | @endsection
|
---|