What is the use of dd() in Laravel?
It is a helper function which is used to dump a variable's contents to the browser and stop the further script execution. It stands for Dump and Die.
BY Best Interview Question ON 11 Jun 2020
Example
dd($array);