ebergsma/404-monitor is a Laravel package for monitor 404 pages within laravel pulse.
It currently has 0 GitHub stars and 1.592 downloads on Packagist (latest version v1.6).
Install it with composer require ebergsma/404-monitor.
Discover more Laravel packages by ebergsma
or browse all Laravel packages to compare alternatives.
Last updated

This is a Laravel Pulse package that allows you to track 404 errors.
You can install the package via composer:
composer require ebergsma/404-monitor
Optionally, you can publish the views using
php artisan vendor:publish --tag="404-monitor-views"
Register the recorder in config/pulse.php. (If you don't have this file make sure you have published the config file of Laravel Pulse using php artisan vendor:publish --tag=pulse-config)
return [
// ...
'recorders' => [
// Existing recorders...
\Geow\NotFoundMonitor\Recorders\NotFoundRecorder::class => [
'enabled' => true,
'ignore' => [
// Ignore specific urls (regex supported)
],
]
]
]
Publish Laravel Pulse dashboard.blade.php view using php artisan vendor:publish --tag=pulse-dashboard
Then you can modify the file and add the 404-monitor livewire template.
<livewire:404-monitor cols="full" />
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.