dd laravel function in php

function dd (...$variables)
{
    foreach ($variables as $variable) {
        echo '<pre>';
        print_r($variable);
        echo '</pre>';
    }

    die();
}


function dump (...$variables)
{
    foreach ($variables as $variable) {
        echo '<pre>';
        print_r($variable);
        echo '</pre>';
    }
}

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *