Skip to content

laradumps/laradumps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

LaraDumps

Available for Windows, Linux and macOS.

๐Ÿ“š Documentation


๐Ÿ‘‹ Hello Dev,


LaraDumps is a friendly app that boosts 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:


Get Started

Requirements

PHP 8.0+ and Laravel 8.75+

Using Laravel

 composer require laradumps/laradumps --dev

PHP Project

 composer require laradumps/laradumps-core --dev

See also: https://laradumps.dev/get-started/release-notes.html#php-package

  • Debug your code using ds() in the same way you would use Laravel's native functions dump() or dd().

  • Run your Laravel application and see the debug dump in the LaraDumps App window.

Example

Here's an example:

// File: routes/web.php

<?php 

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

The Desktop App receives:

Credits

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