devlab-studio/laravel-logs
Composer 安装命令:
composer require devlab-studio/laravel-logs
包简介
Package to manage logs in Laravel applications.
关键字:
README 文档
README
Laravel Logs is a Laravel package for advanced logs and audits management, allowing you to register, query, and clean logs efficiently in your Laravel projects.
- Register and query custom logs
- Audit models and procedures
- Commands to clean and manage logs
- Flexible and extensible configuration
What It Does
This package adds a lightweight audit layer for Eloquent models by logging save and delete operations.
- Tracks procedure names such as
App\\Models\\Order::saveandApp\\Models\\Order::delete - Stores change payloads in JSON format
- Records the user responsible for the action
- Keeps a normalized table of procedures for easier filtering/reporting
Installation
Install the package via Composer:
composer require devlab-studio/laravel-logs
Publish and run the migrations:
php artisan vendor:publish --tag=laravel-logs-migrations php artisan migrate
Publish the configuration file:
php artisan vendor:publish --tag=laravel-logs-config
Useful Commands
Clean old logs:
php artisan logs:clear
logs:clear removes records older than 12 months.
How It Works
- Your model extends the package base model (
Devlab\\LaravelLogs\\Models\\Model). - On
save(), the package detects dirty attributes and logs original vs changed data. - On
delete(), the package logs the deleted model ID. - The procedure name is registered in
models_proceduresif it does not exist yet. - The action is stored in
models_logswith timestamps andcreated_user.
Database Structure
models_procedures
idprocedure(example:App\\Models\\Invoice::save)created_at,updated_at
models_logs
idprocedureprocedure_id(FK tomodels_procedures.id)data(JSON / text)created_usercreated_at,updated_at
Usage Example
Extend your models from the package base model:
<?php namespace App\Models; use Devlab\LaravelLogs\Models\Model; class Customer extends Model { protected $fillable = ['name', 'email']; }
Create and update records as usual:
$customer = Customer::create([ 'name' => 'Jane Doe', 'email' => 'jane@example.com', ]); $customer->email = 'jane.doe@example.com'; $customer->save();
Each operation writes an audit entry in models_logs.
Querying Logs
You can query logs directly with Eloquent:
use Devlab\LaravelLogs\Models\ModelsLog; $latestLogs = ModelsLog::query() ->latest('id') ->limit(20) ->get();
The package also includes helper methods in ModelsLog (like dlGet) for filtered retrieval.
Seeders
If you need sample data for testing, you can create your own seeders to populate the logs table.
Notes
- The package expects an authenticated user for
created_userwhen available. - If no authenticated user exists, it falls back to
config('constants.users.system'). - Ensure your application defines that fallback config value for CLI/background contexts.
Resources
© 2026 Devlab Studiodevlab-studio/laravel-logs 适用场景与选型建议
devlab-studio/laravel-logs 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 307 次下载、GitHub Stars 达 1, 最近一次更新时间为 2026 年 03 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「laravel-logs」 「Devlab」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 devlab-studio/laravel-logs 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 devlab-studio/laravel-logs 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 devlab-studio/laravel-logs 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Application log management for Laravel Enso
Application log management for Laravel Enso
Laravel 5.x.x library for integration Monolog Sentry
Log management dependency for Laravel Enso
Alfabank REST API integration
This package simplifies the process of viewing Laravel logs by providing a user-friendly interface to browse, filter, and manage log entries directly from the application. It allows developers to monitor and troubleshoot issues in real-time without needing to access the file system or navigate compl
统计信息
- 总下载量: 307
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 24
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-17