1. Go to this page and download the library: Download akira/laravel-debugger library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
akira / laravel-debugger example snippets
// Debug a variable
ad($user);
// Debug with label
ad('Current User', $user);
// Debug and stop execution
debugAndDie($user);
// Debug multiple values
ad($user, $orders, $settings);