evanschleret/laravel-user-presence
Composer 安装命令:
composer require evanschleret/laravel-user-presence
包简介
Another Laravel package for tracking user presence in real-time applications.
README 文档
README
Laravel User Presence
This package allows you to track user presence in your Laravel application. It provides a simple way to determine if a user is online, offline, or idle. Useful for chat apps, dashboards, real-time features, and more.
Installation
composer require evanschleret/laravel-user-presence
Optionally, publish the config file:
php artisan vendor:publish --provider="EvanSchleret\LaravelUserPresence\Providers\LaravelUserPresenceServiceProvider"
Requirements
- Laravel 10 or 11
- PHP >= 8.2
- A last_seen_at column on your users table (or whichever model you attach presence to)
$table->timestamp('last_seen_at')->nullable();
You could also publish the migration file to create this column:
php artisan vendor:publish --provider="EvanSchleret\LaravelUserPresence\Providers\LaravelUserPresenceServiceProvider" --tag="migrations"
Then run the migration:
php artisan migrate
Usage
Trait Add the trait to your User model:
use EvanSchleret\LaravelUserPresence\Traits\HasUserPresence; class User extends Authenticatable { use HasUserPresence; }
Middleware
Add the UpdateLastSeen middleware to your web or api group to update presence on each request:
// app/Http/Kernel.php protected $middlewareGroups = [ 'web' => [ // ... \EvanSchleret\LaravelUserPresence\Http\Middleware\UpdateLastSeen::class, ], ];
Attributes available
After setup, the following attributes will be available on the user model:
$user->is_online // true if active in the last 2 minutes
$user->is_offline // inverse of is_online
$user->is_idle // true if inactive for 2–10 minutes
$user->last_seen_ago // "3 minutes ago", "never", etc.
$user->presence_status // 'online', 'away', or 'offline'
Configuration
You can customize time thresholds in the published config file:
// config/user-presence.php return [ 'online_threshold' => 300, // in seconds 'idle_threshold' => 600, // in seconds 'guard' => 'web', // or 'api' / 'sanctum' if using API authentication ];
Events
The package dispatches these events when presence changes:
UserWentOnline
UserWentOffline
UserWentIdle
Roadmap
- Tests
- Redis driver for real-time broadcast presence
- Eloquent observer-based updates
Contributing
I'm always open to contributions! Feel free to submit issues or pull requests on GitHub.
License
This package is open-sourced software licensed under the MIT license.
evanschleret/laravel-user-presence 适用场景与选型建议
evanschleret/laravel-user-presence 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 189 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 07 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「presence」 「EvanSchleret」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 evanschleret/laravel-user-presence 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 evanschleret/laravel-user-presence 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 evanschleret/laravel-user-presence 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Browser based XMPP instant messaging client
Just a service provider for Spatie's MJML wrapper
Real-time events from server to browsers and mobile devices
Alfabank REST API integration
A CodeIgniter Library to Check if files is present in another server
A Class Library to Check if files is present in another server
统计信息
- 总下载量: 189
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-07-29