larapack / dd
`dd` is a helper method in Laravel. This package will add the `dd` to your application.
Installs: 1 701 092
Dependents: 467
Suggesters: 0
Security: 0
Stars: 115
Watchers: 6
Forks: 7
Open Issues: 0
Type:package
Requires
This package is auto-updated.
Last update: 2024-10-06 09:15:12 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