@extends ('core.layouts.app') @section ('title', trans('en.application_log')) @section('content')

{{ trans('en.application_log') }}

@foreach($activities as $log) @endforeach
# {{ trans('hrms.employee')}} {{ trans('en.module')}} {{ trans('general.reference')}} {{ trans('general.note') }} {{ trans('en.created_at') }}
{{$loop->iteration}} {{$log->user->name}} {{ $log->module}} {{ $log->refer}} {{ $log->action}} {{ dateTimeFormat($log->created_at)}}
To clear the log timely check the CRON job section. {{trans('meta.cron')}}
@endsection @section('after-scripts') {{-- For DataTables --}} {{ Html::script(mix('js/dataTable.js')) }} @endsection