Laravel MessageBag Public API: __toString
When a MessageBag instance is cast into a string, its JSON representation is returned as the result. Internally this is accomplished by returning the result of the toJson method. 1 <?php 2 3 use Illuminate \ Support \ MessageBag ; 4 5 // Create a...