eightcedars/filament-inactivity-guard
Gracefully auto-logout users from idle/inactive Filament sessions
Maintainers
Package info
github.com/eightcedars/filament-inactivity-guard
pkg:composer/eightcedars/filament-inactivity-guard
Fund package maintenance!
Requires
- php: ^8.1
- filament/filament: ^4.0 || ^5.0
- livewire/livewire: ^3.0 || ^4.0
- spatie/laravel-package-tools: ^1.16.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^8.0
- orchestra/testbench: ^9.0
- pestphp/pest: ^3.0
- pestphp/pest-plugin-arch: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT eb2c487dd4d2adc4de54a8a793f044aa1d2f2b0d
- Emmanuel Nelson <emmanuel.woop@eightcedars.dev>
laravelfilamentphpfilament auto logouteightcedarsfilament inactivity guardfilament idle session
This package is auto-updated.
Last update: 2026-06-22 04:10:04 UTC
README
๐ Latest Version on Packagist
๐ GitHub Tests Action Status
๐ GitHub Code Style Action Status
๐ Total Downloads
Guard your Filament dashboard from inactive sessions. Log users out after a predefined period of inactivity.
Installation
You can install the package via composer:
composer require eightcedars/filament-inactivity-guard
You can publish the config file with:
php artisan vendor:publish --tag="filament-inactivity-guard-config"
This is the contents of the published config file:
return [ /** * Determine if the plugin is enabled */ 'enabled' => true, /** * How long to wait before an idle session is considered inactive. * This value must be in seconds */ 'inactivity_timeout' => Carbon::SECONDS_PER_MINUTE * env('FILAMENT_IDLE_TIMEOUT', 15), /** * How long to show an inactive session notice before logging the user out. * This value must be in seconds * * Set this to null or 0 to disable the notice and log out immediately a user's session becomes inactive */ 'notice_timeout' => env('FILAMENT_IDLE_WARNING_TIMEOUT', 60), /** * This package watches for a list of browser events to determine if a user is still active. * You may customise as desired. * * Ensure that the list is not empty */ 'interaction_events' => ['mousemove', 'keydown', 'click', 'scroll'], ];
Optionally, you can publish the translation files using
php artisan vendor:publish --tag="filament-inactivity-guard-translations"
You can also publish the view files using
php artisan vendor:publish --tag="filament-inactivity-guard-views"
Usage
Add the plugin class to your panel ServiceProvider
use EightCedars\FilamentInactivityGuard\FilamentInactivityGuardPlugin; $panel ... ->plugin(FilamentInactivityGuardPlugin::make()) ...
You may also configure the plugin behaviour in your service provider instead of publishing and editing the config file:
use EightCedars\FilamentInactivityGuard\FilamentInactivityGuardPlugin;use Illuminate\Support\Carbon;$panel ... ->plugin( FilamentInactivityGuardPlugin::make() ->inactiveAfter(Carbon::SECONDS_PER_MINUTE * 5) ->showNoticeFor(Carbon::SECONDS_PER_MINUTE * 1) // Or set to null to logout immediately after inactivity ->showNoticeFor(null) ->enabled(!app()->isLocal()) ->keepActiveOn(['change', 'select', 'mousemove'], mergeWithDefaults: true), ) ...
You can configure the timeout settings using the following environment variables:
| Variable | Default | Description |
|---|---|---|
FILAMENT_IDLE_TIMEOUT |
15 minutes |
Inactivity period before the logout warning dialog is displayed. |
FILAMENT_IDLE_WARNING_TIMEOUT |
60 seconds |
Duration the logout warning is displayed before the user is automatically logged out. |
Screenshots
Available Languages
๐ธ๐ฆ Arabic (ar) ยท ๐ง๐ฉ Bengali (bn) ยท ๐จ๐ณ Chinese (Simplified) (zh_CN) ยท ๐น๐ผ Chinese (Traditional) (zh_TW) ยท ๐ฉ๐ฐ Danish (da) ยท ๐ณ๐ฑ Dutch (nl) ยท ๐ฌ๐ง English (en) ยท ๐ฎ๐ท Farsi / Persian (fa) ยท ๐ซ๐ฎ Finnish (fi) ยท ๐ซ๐ท French (fr) ยท ๐ฉ๐ช German (de) ยท ๐ฎ๐ฑ Hebrew (he) ยท ๐ฎ๐ณ Hindi (hi) ยท ๐ฎ๐ธ Icelandic (is) ยท ๐ฎ๐ฉ Indonesian (id) ยท ๐ฎ๐น Italian (it) ยท ๐ฏ๐ต Japanese (ja) ยท ๐ฐ๐ท Korean (ko) ยท ๐ฒ๐พ Malay (ms) ยท ๐ณ๐ด Norwegian (no) ยท ๐ต๐ฑ Polish (pl) ยท ๐ง๐ท Portuguese (Brazil) (pt_BR) ยท ๐ท๐บ Russian (ru) ยท ๐ช๐ธ Spanish (es) ยท ๐ธ๐ช Swedish (sv) ยท ๐น๐ญ Thai (th) ยท ๐น๐ท Turkish (tr) ยท ๐บ๐ฆ Ukrainian (uk) ยท ๐ป๐ณ Vietnamese (vi)
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.
