@extends('admin.layouts.app') @section('title', 'Security Dashboard') @section('content')

{{ $recentLockouts }}

Lockouts (24h)

Recent Lockouts

@foreach($lockouts as $lockout) @endforeach
Email IP Address Time User Agent
{{ $lockout->email }} {{ $lockout->ip_address }} {{ \Carbon\Carbon::parse($lockout->created_at)->diffForHumans() }} {{ Str::limit($lockout->user_agent, 50) }}

Top Lockout IPs

@foreach($topIPs as $ip) @endforeach
IP Address Lockout Count
{{ $ip->ip_address }} {{ $ip->total }}
@endsection