@extends('admin.layouts.master-soyuz') @section('title',__('Device History')) @section('body') @include('admin.layouts.topbar',$data)
{{ __('Device History') }}
@csrf
@foreach($users as $key => $user) @endforeach
{{ __("#") }} {{ __("User name")}} {{ __("IP Address") }} {{ __("Platform") }} {{ __("Browser") }} {{ __("Logged in at") }} {{ __("Logged out at") }}
{{ ++$key }} {{__('Name:')}} {{$user->username}}
{{__('Email:')}} {{$user->useremail}}
{{ $user->ip_address }} {{ $user->platform }} {{ $user->browser }} {{ $user->login_at ? date('d-m-Y | h:i A',strtotime($user->login_at)) : '-' ; }} {{ $user->logout_at ? date('d-m-Y | h:i A',strtotime($user->logout_at)) : '-' ; }}
@endsection @section('custom-script') @endsection