---
title: "DebugPHP — Framework Support is here. Laravel logs, zero config."
url: https://daily.dev/posts/debugphp-framework-support-is-here-laravel-logs-zero-config--gpz8pvurd
source_url: https://daily.dev/posts/debugphp-framework-support-is-here-laravel-logs-zero-config--gpz8pvurd
type: freeform
source: "PHP Dev"
author: "Leon"
published: 2026-04-15T13:34:50.446Z
updated: 2026-04-15T13:35:10.309Z
tags: ["php", "laravel", "logging"]
reading_time: 1
upvotes: 51
comments: 6
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# DebugPHP — Framework Support is here. Laravel logs, zero config.

**[PHP Dev](https://daily.dev/sources/phpdev)** · [@callmeleon](https://daily.dev/callmeleon) · 1 min read · 51 upvotes · 6 comments

## Summary

DebugPHP has added Laravel framework support, allowing developers to stream Laravel log output (Log::info, Log::warning, Log::error) directly to the DebugPHP dashboard with just two lines of code and zero configuration. No middleware, facades, or boilerplate required.

## Content

Since launch, the #1 request was: _"Does it work with Laravel?"_

**Now it does.**

DebugPHP just shipped **Framework Support** — starting with Laravel.

One line. That's it.

```
Debug::init(env('SESSION_ID'));
Debug::framework('laravel');
```

Every `Log::info()`, `Log::warning()`, `Log::error()` — instantly on your dashboard. No middleware. No facades. No boilerplate.

If you're a Laravel dev who ever wrote `Log::info()` just to check if code runs — this update is for you.

⭐ [GitHub](https://github.com/CallMeLeon167/debugphp) · 📖 [Docs](https://debugphp.dev/docs) · 🖥️ [Dashboard](https://dashboard.debugphp.dev/)

Drop a star if it saves you one debug cycle. That's all I need. 🤝

## Community discussion

Top comments from developers on daily.dev.

**@cmatyja** · 5 upvotes

> Very interesting project, thanks for sharing!

**@nicolsromero** · 3 upvotes

> nice but the Docs has a problem with the SSL

**@cassianod2** · 1 upvotes

> This is amazing, i will read the docs to a better understanding, but is really amazing project.

**@bullit2k** · 1 upvotes

> sounds good!

**@gaburayondev** · 0 upvotes

> Shipping the #1 requested feature is always the right call, and Laravel was the obvious first target given its ecosystem size. A few thoughts worth adding to the conversation:
>
> 🔹 The two-line integration is the right design decision. Laravel developers are accustomed to elegant, expressive APIs — anything that required middleware registration, service provider setup, or config publishing would have felt out of place. Hooking directly into the existing Log facade means zero behaviour change for the developer; DebugPHP just becomes a silent observer of work they're already doing.
>
> 🔹 The...

## Similar posts on daily.dev

- [Debugging and Logging in Laravel Applications](https://daily.dev/posts/debugging-and-logging-in-laravel-applications-sj48lrnx9) · Laravel News · 23 upvotes · 0 comments

---

Tags: [#php](https://daily.dev/tags/php), [#laravel](https://daily.dev/tags/laravel), [#logging](https://daily.dev/tags/logging)

[View this post on daily.dev](https://daily.dev/posts/debugphp-framework-support-is-here-laravel-logs-zero-config--gpz8pvurd)
