1.

What is the use of dd() in Laravel?

Answer»

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.

Example

DD($array);



Discussion

No Comment Found