Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../vendor/markbaker/../nette/./../myclabs/../egulias/../phpoption/../ralouphie/../myclabs/../paytm/../unicodeveloper/../spatie/./laravel-ignition/./../laravel-ignition/./src
الملفات الموجودة في هذا الـ Path:
.
..
Commands
ContextProviders
Exceptions
Facades
FlareMiddleware
Http
IgnitionServiceProvider.php
Recorders
Renderers
Solutions
Support
Views
helpers.php
ignition-routes.php

مشاهدة ملف: helpers.php

<?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();
    }
}