Showing 10 of 1,278 results.

Mutable Function | Laravel Array Helper Function: array_set

This function affects the original $array . Which would produce a familiar looking array: 1 array( 1 ) { 2 [ " person " ] array(2) { 3 [ " first_name " ] " Jane " 4 [ " last_name " ] " Doe " 5 } 6 } Overwriting the value of first_name is also easy...

Message Tags | Laravel String Pluralization

Message tags act as a sort of comment to help explain the various translation messages when dealing with pluralization. Tags appear at the beginning of a translation message, contain no spaces and end with one colon character ( : ). The following...

Examples of Specific Numbers | Laravel String Pluralization

The following table will show more examples of handling specific numbers when dealing with pluralization translation. The table will use the following translation message: 1 {0} There are no books! 2 |{1,2,3} You have one, two or three books. 3...