wit3 / laradumps

πŸ›» LaraDumps is a friendly app designed to boost your Laravel PHP coding and debugging experience.

Home Page:https://laradumps.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LaraDumps


LaraDumps Windows App LaraDumps MacOS App LaraDumps Linux App

Click on your OS logo to download the Desktop App.

Available for Windows, Linux and macOS.

πŸ“š Documentation


πŸ‘‹ Hello Dev,


LaraDumps is a friendly app designed to boost your Laravel PHP coding and debugging experience.

When using LaraDumps, you can see the result of your debug displayed in a standalone Desktop application.

These are some debug tools available for you:

  • Dump single or multiple variables at once.
  • Dump values in a table format, with a built-in search feature.
  • Monitor SQL Queries.
  • View Laravel Logs.
  • Validate JSON strings.
  • Compare strings with diff.
  • Verify if a string contains a substring.
  • View phpinfo() configuration.
  • Debug Livewire components.
  • List your Laravel routes.
  • Inspect Model attributes.
  • Send your dump to different screens, resulting in a better debugging experience.

Learn more at the Reference Sheet.


Get Started

Requirements

PHP 8.0+ and Laravel 8.75+

Usage

  1. Download the LaraDumps Desktop App:

-Windows

-MacOS

-Linux

  1. Install LaraDumps in your project, run composer require laradumps/laradumps --dev.

  2. Configure LaraDumps in your project, run php artisan ds:init.

  3. Debug your code using ds() instead of Laravel native dump()/dd() tool.

  4. Run your Laravel application and see the debug result in LaraDumps app window.

Here's an example:

Route::get('/', function () {
    ds('Home page accessed!');
    return view('home');
});

Credits

LaraDumps is a free open-source project, and it was inspired by Spatie Ray, check it out!

About

πŸ›» LaraDumps is a friendly app designed to boost your Laravel PHP coding and debugging experience.

https://laradumps.dev

License:MIT License


Languages

Language:PHP 98.7%Language:Blade 1.1%Language:Shell 0.3%