Changeset 0a1fb54 for resources/views/dashboard/departments
- 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/departments/index.blade.php
r4d73966 r0a1fb54 52 52 <th>Folders</th> 53 53 <th>Created by</th> 54 <th>Created at</th>55 54 <th>Updated at</th> 56 55 <th>Directory</th> … … 66 65 <td>{{ $department->code }}</td> 67 66 <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 70 72 @if($department->updated_at==NULL) 71 73 <td>/</td> 72 74 @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> 74 76 @endif 77 75 78 <!-- Trigger --> 76 79 <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.