@extends('layouts.app') @section('content')
Monitor and manage spam attempts on your forms
| Type | Count |
|---|---|
| @switch($type) @case('honeypot') Honeypot @break @case('timing') Timing @break @case('keywords') Keywords @break @case('patterns') Patterns @break @case('ip_reputation') IP Reputation @break @default {{ ucfirst($type) }} @endswitch | {{ $count }} |
No spam attempts recorded in the last {{ $days }} days.
@endif| IP Address | Attempts | Actions |
|---|---|---|
{{ $ip->ip_address }} |
{{ $ip->attempt_count }} |
No spam IPs recorded in the last {{ $days }} days.
@endif| Date/Time | IP Address | Form Type | Spam Type | Details | Status |
|---|---|---|---|---|---|
| {{ $attempt->created_at->format('Y-m-d H:i:s') }} | {{ $attempt->ip_address }} |
@if($attempt->form_type === 'contact') Contact @else Career @endif | @switch($attempt->spam_type) @case('honeypot') Honeypot @break @case('timing') Timing @break @case('keywords') Keywords @break @case('patterns') Patterns @break @case('ip_reputation') IP Reputation @break @default {{ ucfirst($attempt->spam_type) }} @endswitch | {{ Str::limit($attempt->details, 50) }} | @if($attempt->blocked) Blocked @else Detected @endif |
No recent spam attempts found.
@endif