VarDump
Hand on heart, every one of us occasionally uses PHP's var_dump() function in code for debugging. In certain situations, it is a simple quick fix. However, it comes with several disadvantages: it breaks application layout, introduces clutter ... Overall, it is just a makeshift solution. That is why Jet brings an equally simple yet far more powerful tool. From now on, you can do something like this:
Debug::varDump( $paginator, 'Paginator 1' );
Debug::varDump( $page_no, 'Page NO' );
The result will be as follows: In the top right corner of the page, you will see this icon:
And when you click on it, you will see something that is from a completely different universe than standard var_dump 😉
