@extends('layouts.app', ['path' => 'activity_logs']) @section('title') Activity Logs - HRMS @endsection @section('content')
@include('partials.new_alerts')
Activity Logs
@foreach ($activityLogs as $log) @endforeach
Employee ID Modified By Module Action Description Modified Entity Date Details

{{$log['user']['employee_id']}}

{{ ucfirst($log['user']['name']) }} {{ Str::title(str_replace('_', ' ', trim($log['module']))) }} {{ \Str::upper(str_replace('_', ' ', $log['event'])) }} {{ Str::title( $log['log_name'] === 'employee' && !Str::startsWith(Str::lower($log['description']), 'employee') ? 'Employee ' . $log['description'] : $log['description'] ) }} {{ $log['entity_name'] }} {{ formatDisplayDateMDYhia($log['created_at']) }} @if ($log['event']!=='created') @else - @endif
@endsection @push('scripts') @endpush