- Timestamp:
- 11/11/21 21:36:24 (3 years ago)
- Branches:
- master
- Children:
- 4d73966
- Parents:
- 90ab388
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/dashboard/users/index.blade.php
r90ab388 r1f7c934 4 4 5 5 @section('head') 6 <!-- Datatable -->7 {{-- <link rel="stylesheet" href="{{ url('vendors/dataTable/dataTables.min.css') }}" type="text/css">--}}8 6 9 7 @endsection … … 92 90 <td> 93 91 @if(Cache::has('is_online' . $user->id)) 94 <span data-toggle="tooltip" data-placement="bottom" title="{{ $user->last_seen }}" style="cursor: pointer;" class="text-success">Online</span>92 <span data-toggle="tooltip" data-placement="bottom" title="{{ \Carbon\Carbon::parse($user->last_seen)->format('d.m.Y - H:i') }}" class="text-success">Online</span> 95 93 @else 94 @if($user->last_seen == null) 96 95 <span data-toggle="tooltip" data-placement="bottom" title="{{ $user->last_seen }}" class="text-secondary">Offline</span> 96 @else 97 <span data-toggle="tooltip" data-placement="bottom" title="{{ \Carbon\Carbon::parse($user->last_seen)->format('d.m.Y - H:i') }}" class="text-secondary">Offline</span> 98 @endif 97 99 @endif 98 100 </td> … … 322 324 </div> 323 325 324 325 326 326 @endsection 327 327
Note:
See TracChangeset
for help on using the changeset viewer.