`dd` is a helper method in Laravel. This package will add the `dd` to your application.
Maintainers
1.1
2016-12-15 09:34 UTC
Requires
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 561b5111a13d0094b59b5c81b1572489485fb948
- Mark Topper <hi.woop@webman.io>
This package is auto-updated.
Last update: 2026-06-06 13:20:53 UTC
README
dd is a helper method in Laravel. This package will add the dd to your application.
Install
Run composer require larapack/dd 1.*
For Laravel
Laravel already have the dd function in its helpers.
The dd function from this package is equal to the one in Laravel 5.
If you wish to override the Laravel 4 function with this one, please follow those few steps:
- Open
public/index.php - Add
require "../vendor/larapack/dd/src/helper.php";after the opening<?php-tag
