Changeset 94f05dc for resources/views/dashboard
- Timestamp:
- 10/24/21 23:23:54 (3 years ago)
- Branches:
- develop, master
- Children:
- df6e9ec
- Parents:
- fa80fbe
- Location:
- resources/views/dashboard
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/dashboard/files/index.blade.php
rfa80fbe r94f05dc 76 76 @else @if(in_array(explode('.', $file->name)[1], $imageExt)) 77 77 <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2"> 78 <a href="{{ url('/ uploads/' . $file->location) }}" class="image-popup-gallery-item">78 <a href="{{ url('/storage/' . $file->location) }}" class="image-popup-gallery-item"> 79 79 <div class="image-hover"> 80 <img src="{{ url('/ uploads/' . $file->location) }}" class="rounded" width="30" alt="image">80 <img src="{{ url('/storage/' . $file->location) }}" class="rounded" width="30" alt="image"> 81 81 </div> 82 82 </a> -
resources/views/dashboard/folders/files.blade.php
rfa80fbe r94f05dc 10 10 <div class="card-body"> 11 11 @if(auth()->user()->hasPermission('manage_all_folders')) 12 <a class="btn btn-secondary btn-block text-white" href="javascript:void(0)" data-target="# editModal_{{$folder->id}}" data-toggle="modal">13 Upload12 <a class="btn btn-secondary btn-block text-white" href="javascript:void(0)" data-target="#createModal{{$folder->id}}" data-toggle="modal"> 13 Edit folder 14 14 </a> 15 15 @endif … … 44 44 <div class="dropdown-menu"> 45 45 <a class="dropdown-item" href="javascript:void(0)" data-toggle="modal" data-target="#editModal_{{$folder->id}}"> 46 Upload46 Edit folder 47 47 </a> 48 48 </div> … … 88 88 @else @if(in_array(explode('.', $file->name)[1], $imageExt)) 89 89 <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2"> 90 <a href="{{ url('/ uploads/' . $file->location) }}" class="image-popup-gallery-item">90 <a href="{{ url('/storage/' . $file->location) }}" class="image-popup-gallery-item"> 91 91 <div class="image-hover"> 92 <img src="{{ url('/ uploads/' . $file->location) }}" class="rounded" width="100" alt="image">92 <img src="{{ url('/storage/' . $file->location) }}" class="rounded" width="100" alt="image"> 93 93 </div> 94 94 </a> -
resources/views/dashboard/index.blade.php
rfa80fbe r94f05dc 145 145 @else @if(in_array(explode('.', $file->name)[1], $imageExt)) 146 146 <div class="col-xl-1 col-lg-1 col-md-1 col-sm-2"> 147 <a href="{{ url('/ uploads/' . $file->location) }}" class="image-popup-gallery-item">147 <a href="{{ url('/storage/' . $file->location) }}" class="image-popup-gallery-item"> 148 148 <div class="image-hover"> 149 <img src="{{ url('/ uploads/' . $file->location) }}" class="rounded" width="30" alt="image">149 <img src="{{ url('/storage/' . $file->location) }}" class="rounded" width="30" alt="image"> 150 150 </div> 151 151 </a>
Note:
See TracChangeset
for help on using the changeset viewer.