@extends('admin.layout') @section('content')

User Role Log Data

History Logs
@if($results->isEmpty())

No log data found

@else @foreach ($results as $log) {{-- @dd($log); --}}
User {{ ucwords($log->userRoleAdmin->first_name . ' ' . $log->userRoleAdmin->last_name) }} : In the {{ $log->roleId->RoleName ?? 'null' }} role section, {{ $log->name }} the permission was updated from {{ $log->old_values ?: 'null' }} to {{ $log->new_values ?: 'null'}} on {{ \Carbon\Carbon::parse($log->created_at)->format('d/m/Y h:i:s A') }}
@endforeach @endif
@endsection