The dd function dumps the given variables and ends execution of the script:
<?php dd($value);

dd($value1, $value2, $value3, ...);
<?php     {

        $this->dump(...$args);



        dd();

    }
<?php     public function dd()

    {

        dd($this->toSql(), $this->getBindings());

    }
<?php     public function ddRawSql()

    {

        dd($this->toRawSql());

    }
<?php             ->map(fn ($average) => number_format($average, 3).'ms')

            ->when($benchmarkables instanceof Closure, fn ($c) => $c->first(), fn ($c) => $c->all());



        dd($result);

    }

}
<?php     {

        $this->dump(...$args);



        dd();

    }