PHPackages                             webxid/laravel-debug-helpers - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. webxid/laravel-debug-helpers

ActiveLibrary[Debugging &amp; Profiling](/categories/debugging)

webxid/laravel-debug-helpers
============================

Debug helper for Laravel Framework.

v2.0.1(4y ago)092MITPHPPHP ^7.3|^8.0

Since Jan 23Pushed 4y ago1 watchersCompare

[ Source](https://github.com/webxid/laravel-debug-helpers)[ Packagist](https://packagist.org/packages/webxid/laravel-debug-helpers)[ RSS](/packages/webxid-laravel-debug-helpers/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Install
=======

[](#install)

Add the next things

1. Run `composer require webxid/laravel-debug-helpers --dev` in command line
2. File `/artisan`, after `define('LARAVEL_START', microtime(true));`

```
if (file_exists(__DIR__.'/vendor/webxid/laravel-debug-helpers/src/helpers.php')) {
    require __DIR__.'/vendor/webxid/laravel-debug-helpers/src/helpers.php';
}
```

3. File `/public/index.php`, after `define('LARAVEL_START', microtime(true));`

```
if (file_exists(__DIR__.'/../vendor/webxid/laravel-debug-helpers/src/helpers.php')) {
    require __DIR__.'/../vendor/webxid/laravel-debug-helpers/src/helpers.php';
}
```

How To Use
==========

[](#how-to-use)

This lib halps to improve the default Laravel debug stuff:

- Adds a function call place Route for `dd()` into the and of print

    [![](https://camo.githubusercontent.com/d200d8155248c0cf6d2bd2e549461f7ce6e7807b83fffcf4bb993499e77de0d9/68747470733a2f2f692e696d6775722e636f6d2f5741766c76326c2e706e67)](https://camo.githubusercontent.com/d200d8155248c0cf6d2bd2e549461f7ce6e7807b83fffcf4bb993499e77de0d9/68747470733a2f2f692e696d6775722e636f6d2f5741766c76326c2e706e67)[![](https://camo.githubusercontent.com/30a1011a666858eba21a6bef7ad00d23be185d5bec1c534ffe46d1db480fbd3c/68747470733a2f2f692e696d6775722e636f6d2f716e706c7673732e706e67)](https://camo.githubusercontent.com/30a1011a666858eba21a6bef7ad00d23be185d5bec1c534ffe46d1db480fbd3c/68747470733a2f2f692e696d6775722e636f6d2f716e706c7673732e706e67)
- Adds redirect place into a page headers

    [![](https://camo.githubusercontent.com/4c6ee699317506f0a5035a0eb95bdb0ce2441f17bd61802379da43e7957ca265/68747470733a2f2f692e696d6775722e636f6d2f3262654d4545492e706e67)](https://camo.githubusercontent.com/4c6ee699317506f0a5035a0eb95bdb0ce2441f17bd61802379da43e7957ca265/68747470733a2f2f692e696d6775722e636f6d2f3262654d4545492e706e67)[![](https://camo.githubusercontent.com/3fbb88feb4478c8b8a74bcfdf16b03c9d9df75c3d0e8b1816bc15500aa653118/68747470733a2f2f692e696d6775722e636f6d2f706b794c424a472e706e67)](https://imgur.com/pkyLBJG)
- `_dd()` write a dump into `storage/logs/laravel.log`. It replaces the content (by default) or adds a string in the end of the file (check the function parameters)

    [![](https://camo.githubusercontent.com/c94010ee99b4164f90b88fb1a7578051df22845ac21900aee2f8cdfd6053cb49/68747470733a2f2f692e696d6775722e636f6d2f5a4973524a56592e706e67)](https://camo.githubusercontent.com/c94010ee99b4164f90b88fb1a7578051df22845ac21900aee2f8cdfd6053cb49/68747470733a2f2f692e696d6775722e636f6d2f5a4973524a56592e706e67)[![](https://camo.githubusercontent.com/db78d9d387cc4e230f368e2e5ea6edb58d8ee7de931d8e42b0d650e8366f62c3/68747470733a2f2f692e696d6775722e636f6d2f355444456869682e706e67)](https://camo.githubusercontent.com/db78d9d387cc4e230f368e2e5ea6edb58d8ee7de931d8e42b0d650e8366f62c3/68747470733a2f2f692e696d6775722e636f6d2f355444456869682e706e67)[![](https://camo.githubusercontent.com/96a34e385eaa61393b55126fb64d0d27cdbb3a219de1b436139d3080ad121e82/68747470733a2f2f692e696d6775722e636f6d2f4d315570364a472e706e67)](https://camo.githubusercontent.com/96a34e385eaa61393b55126fb64d0d27cdbb3a219de1b436139d3080ad121e82/68747470733a2f2f692e696d6775722e636f6d2f4d315570364a472e706e67)
- `_trace()` halps to understand, how a script comes in some place of code

    [![](https://camo.githubusercontent.com/eaa143256e9a8fd0fabf8a8c933dc111c8151c37fd14c314a8c3773ed49d7808/68747470733a2f2f692e696d6775722e636f6d2f6b5141363848522e706e67)](https://camo.githubusercontent.com/eaa143256e9a8fd0fabf8a8c933dc111c8151c37fd14c314a8c3773ed49d7808/68747470733a2f2f692e696d6775722e636f6d2f6b5141363848522e706e67)[![](https://camo.githubusercontent.com/74f0faec0784ba6084099c989cd06481a7a00875976c2544f54bc2bdea287b4b/68747470733a2f2f692e696d6775722e636f6d2f4448513475644c2e706e67)](https://imgur.com/DHQ4udL)

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~50 days

Total

2

Last Release

1573d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3855639?v=4)[Pavlo M.](/maintainers/webxid)[@webxid](https://github.com/webxid)

---

Top Contributors

[![webxid](https://avatars.githubusercontent.com/u/3855639?v=4)](https://github.com/webxid "webxid (13 commits)")

### Embed Badge

![Health badge](/badges/webxid-laravel-debug-helpers/health.svg)

```
[![Health](https://phpackages.com/badges/webxid-laravel-debug-helpers/health.svg)](https://phpackages.com/packages/webxid-laravel-debug-helpers)
```

###  Alternatives

[symfony/debug-bundle

Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework

2.4k124.8M1.0k](/packages/symfony-debug-bundle)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135224.7k7](/packages/statamic-rad-pack-runway)[api-platform/laravel

API Platform support for Laravel

58171.6k14](/packages/api-platform-laravel)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21318.6k3](/packages/ecotone-laravel)[duncanmcclean/statamic-cargo

Comprehensive e-commerce addon for Statamic. Build bespoke e-commerce sites without the complexity.

3417.0k](/packages/duncanmcclean-statamic-cargo)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
