Skip to content

timacdonald/404-monitor

 
 

Repository files navigation

404 Monitor for Laravel Pulse

Track 404 pages inside Laravel Pulse

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This is a Laravel Pulse package that allows you to track 404 pages.

Installation

You can install the package via composer:

composer require geowrgetudor/404-monitor

Optionally, you can publish the views using

php artisan vendor:publish --tag="404-monitor-views"

Usage

Register the recorder inside config/pulse.php. (If you don't have this file make sure you have published the config file of Larave Pulse using php artisan vendor:publish --tag=pulse-config)

return [
    // ...

    'recorders' => [
        // Existing recorders...

        \Geow\NotFoundMonitor\Recorders\NotFoundRecorder::class => [
            'enabled' => true
        ]
    ]
]

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" />

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 72.0%
  • Blade 28.0%