PHP code example of mkwebdesign / filament-watchdog
1. Go to this page and download the library: Download mkwebdesign/filament-watchdog library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mkwebdesign / filament-watchdog example snippets
return [
'monitoring' => [
'enabled' => true,
'scan_interval' => 'everyMinute', // How often to run scans
],
'alerts' => [
'email' => [
'enabled' => true,
'recipients' => ['[email protected]'],
],
],
'emergency' => [
'auto_publish_views' => true,
'lockdown_enabled' => true,
],
// ... more settings
];
use MKWebDesign\FilamentWatchdog\FilamentWatchdogPlugin;
// Inside the panel() method:
->plugin(FilamentWatchdogPlugin::make());