Example Use | Laravel 5 Translation Using the Double Underscore (__) Helper Function
If we look in the resources/lang/en/validation.php resource file, we will see something similar to the following defined at the top of the file: 1 <?php 2 3 return [ 4 // ... 5 ' accepted ' => ' The :attribute must be accepted. ' , 6 // ... 7 ] ;...