Ignore:
Timestamp:
11/23/21 22:01:52 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
master
Children:
dbc5976
Parents:
4d73966
Message:

bug fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • resources/views/dashboard/index.blade.php

    r4d73966 r0a1fb54  
    119119                                <th>Name</th>
    120120                                <th>Created at</th>
    121                                 <th>Updated at</th>
    122121                                <th>Folder name</th>
    123122                                <th>Folder archive ID</th>
     
    165164                                    <td>{{ $file->name }}</td>
    166165                                    <td>{{ date('d.m.Y - H:i', strtotime($file->created_at)) }}</td>
    167                                     @if($file->updated_at==NULL)
    168                                         <td>/</td>
    169                                     @else
    170                                         <td>{{ date('d.m.Y - H:i', strtotime($file->updated_at)) }}</td>
    171                                     @endif
    172166                                    <td><a href="{{ route('dashboard.folders.files', ['id' => $file->folder_id]) }}" class="text-linkedin">{{ \App\Models\Folder::find($file->folder_id)->name }}</a></td>
    173167                                    <td>{{ \App\Models\Folder::find($file->folder_id)->arch_id }}</td>
     
    180174                                    @if(auth()->user()->hasPermission('manage_all_files'))
    181175                                    <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>
    185176                                        <a href="{{ route("dashboard.files.downloadFile", ['id' => $file->id]) }}" class="text-danger ml-2"title="Download">
    186177                                            <i class="ti-download"></i>
     
    244235                    <div class="d-flex justify-content-between align-items-start mb-3">
    245236                        <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>
    247238                    </div>
    248239                </div>
     
    260251
    261252                            <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>
    263254                            </td>
    264255                            <td>
Note: See TracChangeset for help on using the changeset viewer.