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/departments/index.blade.php

    r4d73966 r0a1fb54  
    5252                                <th>Folders</th>
    5353                                <th>Created by</th>
    54                                 <th>Created at</th>
    5554                                <th>Updated at</th>
    5655                                <th>Directory</th>
     
    6665                                    <td>{{ $department->code }}</td>
    6766                                    <td>{{ $department->no_of_folders }}</td>
    68                                     <td>{{ $department->getCreatedByName() }}</td>
    69                                     <td>{{ date('d.m.Y - H:i', strtotime($department->created_at)) }}</td>
     67                                    <td>{{ $department->user->username }}
     68                                        <div class="font-weight-light p-1">{{$department->user->name}} {{$department->user->surname}}</div>
     69                                        <div class="font-weight-light p-1">{{ date('d.m.Y - H:i', strtotime($department->created_at)) }}</div>
     70                                    </td>
     71
    7072                                    @if($department->updated_at==NULL)
    7173                                        <td>/</td>
    7274                                    @else
    73                                     <td>{{ date('d.m.Y - H:i', strtotime($department->updated_at)) }}</td>
     75                                        <td class="font-weight-light p-1">{{ date('d.m.Y - H:i', strtotime($department->updated_at)) }}</td>
    7476                                    @endif
     77
    7578                                    <!-- Trigger -->
    7679                                    <td><button data-clipboard-text="{{$department->location}}" class="btn btn-sm btn-primary text-white" data-toggle="tooltip" data-placement="right" title="{{$department->location}}"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clipboard" viewBox="0 0 16 16">
Note: See TracChangeset for help on using the changeset viewer.