laradumps / laradumps by luanfreitasdev

A Dump Component for Laravel.
224,362
642
14
Package Data
Maintainer Username: luanfreitasdev
Maintainer Contact: luanfreitas10@protonmail.com (Luan Freitas)
Package Create Date: 2022-06-05
Package Last Update: 2024-04-20
Home Page: https://laradumps.dev
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 15:15:42
Package Statistics
Total Downloads: 224,362
Monthly Downloads: 16,779
Daily Downloads: 692
Total Stars: 642
Total Watchers: 14
Total Forks: 38
Total Open Issues: 3

👋 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:

Get Started

Requirements

PHP 8.0+ and Laravel 8.75+

Usage

  1. Download the 🖥️ LaraDumps Desktop App here: LaraDumps Desktop App
  2. Install LaraDumps in your Laravel project, run:
 composer require laradumps/laradumps --dev
  1. Configure LaraDumps, run:
php artisan ds:init
  1. Debug your code using ds() in the same way you would use Laravel's native functions dump() or dd().

  2. Run your Laravel application and see the debug dump in 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!