Ignore:
Timestamp:
10/23/21 04:03:46 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
b39afb5
Parents:
c6b84df
Message:

bug fixes, edited export, added fileSeeder for DB testing

File:
1 edited

Legend:

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

    rc6b84df r4b7e2d3  
    22
    33@section("title", "SaveSpace - Users")
    4 
    5 @section('pageTitle', 'Users')
    64
    75@section('head')
     
    4240                                <th>Username</th>
    4341                                <th>Name</th>
    44                                 <th>Email</th>
    45                                 <th>Phone Number</th>
    4642                                <th>Created by</th>
    4743                                <th>Created at</th>
    4844                                <th>Updated at</th>
    49                                 <th>Role</th>
    5045                                <th>Status</th>
    5146                                <th>Actions</th>
     
    7166                                        {{$user->username}}
    7267                                    </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>
    7673                                    <td>{{ $user->getCreatedByName() }}</td>
    7774                                    <td>{{ date('d.m.Y - H:i', strtotime($user->created_at)) }}</td>
     
    8178                                        <td>{{ date('d.m.Y - H:i', strtotime($user->updated_at)) }}</td>
    8279                                    @endif
    83                                     <td>{{ $user->role->name }}</td>
    8480                                    <td>
    8581                                        @if(Cache::has('is_online' . $user->id))
     
    9995                                        </td>
    10096                                    @else
    101                                         <td>Admin</td>
     97                                        <td>/</td>
    10298                                        @endif
    10399                                </tr>
Note: See TracChangeset for help on using the changeset viewer.