承接 devlab-studio/laravel-logs 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

devlab-studio/laravel-logs

Composer 安装命令:

composer require devlab-studio/laravel-logs

包简介

Package to manage logs in Laravel applications.

README 文档

README



Devlab Logo



Español

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::save and App\\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

  1. Your model extends the package base model (Devlab\\LaravelLogs\\Models\\Model).
  2. On save(), the package detects dirty attributes and logs original vs changed data.
  3. On delete(), the package logs the deleted model ID.
  4. The procedure name is registered in models_procedures if it does not exist yet.
  5. The action is stored in models_logs with timestamps and created_user.

Database Structure

models_procedures

  • id
  • procedure (example: App\\Models\\Invoice::save)
  • created_at, updated_at

models_logs

  • id
  • procedure
  • procedure_id (FK to models_procedures.id)
  • data (JSON / text)
  • created_user
  • created_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_user when 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 Studio

devlab-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 我们能提供哪些服务?
定制开发 / 二次开发

基于 devlab-studio/laravel-logs 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 307
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 24
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-03-17