source: resources/views/dashboard/files/index.blade.php@ d95fdd2

Last change on this file since d95fdd2 was d95fdd2, checked in by beratkjufliju <kufliju@…>, 3 years ago

bug fix

  • Property mode set to 100644
File size: 12.5 KB
Line 
1@extends('layouts.app')
2
3@section("title", "SaveSpace - Files")
4
5@section('head')
6
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>
17 <li class="breadcrumb-item active" aria-current="page">Departments</li>
18 </ol>
19 </nav>
20 <div class="dropdown">
21 @if(auth()->user()->hasPermission('manage_all_files'))
22 <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">Add</a>
23 @endif
24 @if(auth()->user()->hasPermission('download_data'))
25 <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white">Download</a>
26 @endif
27 @if(auth()->user()->hasPermission('export_data'))
28 <a href="{{ route('dashboard.files.export') }}" class="btn btn-success text-white">Export</a>
29 @endif
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">
60 <i class="fa fa-file-excel-o text-success fa-2x"></i>
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">
64 <i class="fa fa-file-word-o text-info fa-2x"></i>
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">
68 <i class="fa fa-file-pdf-o text-danger fa-2x"></i>
69 </div>
70 @else @if(in_array(explode('.', $file->name)[1], $imageExt))
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>--}}
78 <i class="fa fa-file-image-o text-danger"></i>
79 @else
80 <i class="fa fa-file-text-o text-warning"></i>
81 @endif
82 @endif
83 @endif
84 @endif
85
86
87 </td>
88 <td>{{ $file->name }}</td>
89 <td>{{ date('d.m.Y - H:i', strtotime($file->created_at)) }}</td>
90 @if($file->updated_at==NULL)
91 <td>/</td>
92 @else
93 <td>{{ date('d.m.Y - H:i', strtotime($file->updated_at)) }}</td>
94 @endif
95 <td><a href="{{ route('dashboard.folders.files', ['id' => $file->folder_id]) }}" class="text-linkedin">{{ \App\Models\Folder::find($file->folder_id)->name }}</a></td>
96 <td>{{ \App\Models\Folder::find($file->folder_id)->arch_id }}</td>
97 <!-- Trigger -->
98 <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">
99 <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"/>
100 <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"/>
101 </svg></button>
102 </td>
103 @if(auth()->user()->hasPermission('manage_all_files'))
104 <td>
105 <a href="javascript:void(0)" class="text-secondary" data-toggle="modal" data-target="#editModal_{{$file->id}}" title="Edit">
106 <i class="ti-pencil"></i>
107 </a>
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>
111 @if(auth()->user()->hasPermission('delete_data'))
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>
115 @endif
116 </td>
117 @else
118 <td></td>
119 @endif
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
153 </div>
154 </div>
155 </div>
156 </div>
157 </div>
158
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>
189
190
191 <input type="file" class="form-control" id="file-item" name="file_item[]" accept="{{ $fileTypes }}" multiple>
192 </div>
193 </div>
194 </div>
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>
202 </div>
203
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
Note: See TracBrowser for help on using the repository browser.