@extends('admin.layout') @section('style') @parent @stop @section('content')

{{ trans('Logout History') }} {{ trans('Logout History') }}...

@php $getUserRoleData = userRoleData(); $schedules = explode(",",$getUserRoleData->schedules); @endphp

@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
@if(in_array("View",$schedules )) @php($sr=1) @if( $result['history']->count()>0) @foreach ($result['history'] as $rsVal) @endforeach @else @endif
{{ trans('#') }} {{ trans('User') }} {{ trans('Logout Time') }} {{ trans('Date') }}
{{ $sr}} {{ ucfirst($rsVal->first_name) }} {{ ucfirst($rsVal->last_name) }}
{{ ucfirst($rsVal->email) }}
{{ ucfirst($rsVal->logout_time) }} {{ ucfirst($rsVal->logout_date) }}
No record found.
{!! $result['history']->appends(request()->input())->links(); !!} @else

Please contact with SuperAdmin

@endif
@endsection @section('scripts') @parent @stop