@extends('layouts.adminmaster') @section('styles') @endsection @section('content')

{{ lang('Employees') }}

{{ lang('Active') }}
{{ lang('Inactive') }}

{{ lang('Customers') }}

{{ lang('Active') }}
{{ lang('Inactive') }}

{{ lang('Ticket') }}

{{ lang('New') }}
{{ lang('Inprogress') }}
{{ lang('On-hold') }}
{{ lang('Reopen') }}
{{ lang('Closed') }}

{{ lang('Ticket Priority') }}

{{ lang('Knowledge Base') }}

{{ lang('Employee Activity Report') }}

@foreach ($activity as $act)
@if ($act->user->image == null) @else @endif
{{ lang($act->user->name) }} {{ lang($act->activity_type) }}
{{ lang($act->ip_address) }} @if ($act->browser) {{ lang($act->browser) }} @endif @if ($act->device) {{ lang($act->device) }} @endif
{{ $act->created_at->timezone(setting('default_timezone'))->format('h:i:sA') }} {{ $act->created_at->timezone(setting('default_timezone'))->format('d,M Y') }}
@endforeach
@endsection @section('scripts') @endsection