Changeset 0a1fb54 for resources/views/dashboard/index.blade.php
- Timestamp:
- 11/23/21 22:01:52 (3 years ago)
- Branches:
- master
- Children:
- dbc5976
- Parents:
- 4d73966
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/dashboard/index.blade.php
r4d73966 r0a1fb54 119 119 <th>Name</th> 120 120 <th>Created at</th> 121 <th>Updated at</th>122 121 <th>Folder name</th> 123 122 <th>Folder archive ID</th> … … 165 164 <td>{{ $file->name }}</td> 166 165 <td>{{ date('d.m.Y - H:i', strtotime($file->created_at)) }}</td> 167 @if($file->updated_at==NULL)168 <td>/</td>169 @else170 <td>{{ date('d.m.Y - H:i', strtotime($file->updated_at)) }}</td>171 @endif172 166 <td><a href="{{ route('dashboard.folders.files', ['id' => $file->folder_id]) }}" class="text-linkedin">{{ \App\Models\Folder::find($file->folder_id)->name }}</a></td> 173 167 <td>{{ \App\Models\Folder::find($file->folder_id)->arch_id }}</td> … … 180 174 @if(auth()->user()->hasPermission('manage_all_files')) 181 175 <td> 182 <a href="javascript:void(0)" class="text-secondary" data-toggle="modal" data-target="#editModal_{{$file->id}}" title="Edit">183 <i class="ti-pencil"></i>184 </a>185 176 <a href="{{ route("dashboard.files.downloadFile", ['id' => $file->id]) }}" class="text-danger ml-2"title="Download"> 186 177 <i class="ti-download"></i> … … 244 235 <div class="d-flex justify-content-between align-items-start mb-3"> 245 236 <h6 class="card-title mb-0">Largest departments</h6> 246 <a href="{{route("dashboard.departments.index")}}" class="small text-linkedin">View </a>237 <a href="{{route("dashboard.departments.index")}}" class="small text-linkedin">View all</a> 247 238 </div> 248 239 </div> … … 260 251 261 252 <td> 262 <a href="{{ route("dashboard.folders.index", ['id' => $department->id]) }}" >{{$department->name}}</a>253 <a href="{{ route("dashboard.folders.index", ['id' => $department->id]) }}" class="text-linkedin">{{$department->name}}</a> 263 254 </td> 264 255 <td>
Note:
See TracChangeset
for help on using the changeset viewer.