I upgraded to Laravel 9 the other day, and now the ddd()
helper is failing with the error Call to undefined function ddd()
. I found this post on the Laracasts forum, but at time of writing there is only a single reply that states that the facade/ignition
was replaced with spatie/laravel-ignition
. I did not see anything in the documentation for the new package that mentions anything changing with ddd()
, is there an additional configuration or something that is needed to re-enable ddd()
?
In spatie/laravel-ignition
version 1.2.0, ddd()
was added back in! If you are not able to use ddd()
, first check your composer.json
file to make sure that your spatie/laravel-ignition
version is 1.2.0 or above.
"require-dev": {
"spatie/laravel-ignition": "^1.2.3"
}