Dumper
Improve the default output of dump() and dd() in Laravel projects.
Last updated
Improve the default output of dump() and dd() in Laravel projects.
Last updated
Improve the default output of dump()
and dd()
in Laravel projects. Improves the default dump behavior for many core Laravel objects, including:
Models
Query Builders
Service Container
Database Connections
Carbon Instances
Requests and Responses
https://user-images.githubusercontent.com/21592/150163719-547ecd90-b029-4588-9648-34891e5e0886.mp4
Install as a dev dependency:
Just use dd()
as you would normally, and enjoy the newly curated output! If, for some reason, you really need the full debug output for an object that laravel-dumper
customizes, you can do a "full" dump with ddf()
and dumpf()
.
You can see comparisons between the default dd()
output and the laravel-dumper
output in the diffs directory of this repository.
If there are objects in your project that you would like to customize the dd()
behavior for, you can register custom casters using the CustomCaster
class:
The reorder
method accepts an array of patterns. For example, the default Model
caster uses the following ordering rules:
This ensures that id
is always first, followed by all foreign keys, followed by all other attributes, and then finally followed by timestamp attributes (with deleted_at
last). By applying bespoke ordering rules, you can make sure that the properties you usually need to debug are at the top of the dd()
output.
It's also possible to register your own casters for any class by publishing the laravel-dumper
config file and registering your custom classes in the 'casters'
section of the config. This gives you the same level of control over the dd()
output as the core Symfony VarDumper package, but is more complex to implement.
Your custom casters should extend Glhd\LaravelDumper\Casters\Caster
and implement the cast
method. See any of our built-in casters for more details.