���� JFIF  x x �� C         �� C   ��   " ��     �� �  } !1AQa "q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������     �� �   w !1AQ aq"2�B���� #3R�br�{ gilour

File "helpers.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/vendor/spatie/laravel-ignition/src/helpers.php
File size: 507 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

use Spatie\LaravelIgnition\Renderers\ErrorPageRenderer;

if (! function_exists('ddd')) {
    function ddd()
    {
        $args = func_get_args();

        if (count($args) === 0) {
            throw new Exception('You should pass at least 1 argument to `ddd`');
        }

        call_user_func_array('dump', $args);

        $renderer = app()->make(ErrorPageRenderer::class);

        $exception = new Exception('Dump, Die, Debug');

        $renderer->render($exception);

        die();
    }
}