Changeset 4b7e2d3 for resources/views/dashboard/users
- Timestamp:
- 10/23/21 04:03:46 (3 years ago)
- Branches:
- develop, master
- Children:
- b39afb5
- Parents:
- c6b84df
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/dashboard/users/index.blade.php
rc6b84df r4b7e2d3 2 2 3 3 @section("title", "SaveSpace - Users") 4 5 @section('pageTitle', 'Users')6 4 7 5 @section('head') … … 42 40 <th>Username</th> 43 41 <th>Name</th> 44 <th>Email</th>45 <th>Phone Number</th>46 42 <th>Created by</th> 47 43 <th>Created at</th> 48 44 <th>Updated at</th> 49 <th>Role</th>50 45 <th>Status</th> 51 46 <th>Actions</th> … … 71 66 {{$user->username}} 72 67 </td> 73 <td>{{$user->name .' '. $user->surname}}</td> 74 <td>{{$user->email}}</td> 75 <td>{{$user->phone_number}}</td> 68 <td>{{$user->name .' '. $user->surname}} 69 <div class="font-weight-light p-1">{{$user->role->name}}</div> 70 <div class="font-weight-light p-1">{{$user->email}}</div> 71 <div class="font-weight-light p-1">{{$user->phone_number}}</div> 72 </td> 76 73 <td>{{ $user->getCreatedByName() }}</td> 77 74 <td>{{ date('d.m.Y - H:i', strtotime($user->created_at)) }}</td> … … 81 78 <td>{{ date('d.m.Y - H:i', strtotime($user->updated_at)) }}</td> 82 79 @endif 83 <td>{{ $user->role->name }}</td>84 80 <td> 85 81 @if(Cache::has('is_online' . $user->id)) … … 99 95 </td> 100 96 @else 101 <td> Admin</td>97 <td>/</td> 102 98 @endif 103 99 </tr>
Note:
See TracChangeset
for help on using the changeset viewer.