Changeset d795fa6 for resources/views/dashboard/users/index.blade.php
- Timestamp:
- 10/17/21 18:39:50 (3 years ago)
- Branches:
- develop, master
- Children:
- bd9e8e3
- Parents:
- 120759b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/dashboard/users/index.blade.php
r120759b rd795fa6 1 1 @extends('layouts.app') 2 2 3 @section("title", " Users")3 @section("title", "SaveSpace - Users") 4 4 5 @section('pageTitle', 'User List')5 @section('pageTitle', 'Users') 6 6 7 7 @section('head') … … 37 37 <thead> 38 38 <tr> 39 <th> 40 {{-- <div class="custom-control custom-checkbox">--}} 41 {{-- <input type="checkbox" class="custom-control-input" id="user-list-select-all">--}} 42 {{-- <label class="custom-control-label" for="user-list-select-all"></label>--}} 43 {{-- </div>--}} 44 </th> 39 <th></th> 45 40 <th>State</th> 46 41 <th>Username</th> … … 48 43 <th>Email</th> 49 44 <th>Phone Number</th> 45 <th>Created by</th> 50 46 <th>Created at</th> 47 <th>Updated at</th> 51 48 <th>Role</th> 52 49 <th>Status</th> … … 76 73 <td>{{$user->name .' '. $user->surname}}</td> 77 74 <td>{{$user->email}}</td> 78 <td>{{$user->mobile_number}}</td> 75 <td>{{$user->phone_number}}</td> 76 <td>{{ $user->getCreatedByName() }}</td> 79 77 <td>{{ date('d.m.Y', strtotime($user->created_at)) }}</td> 78 @if($user->updated_at==NULL) 79 <td>/</td> 80 @else 81 <td>{{ date('d.m.Y - H:i', strtotime($user->updated_at)) }}</td> 82 @endif 80 83 <td>{{ $user->role->name }}</td> 81 84 <td>
Note:
See TracChangeset
for help on using the changeset viewer.