Search

Showing 7 of 1,697 result(s)

/blog/2018/02/20/laravel-5-string-translation-public-api#content-getting-the-fallback-locale-with-getfallback

The getFallback method is the logical counterpart to the setFallback method and can be used to determine the currently configured fallback locale.

/blog/2018/04/11/laravel-5-representing-multi-dimensional-arrays-in-dot-notation-with-dot

The dot helper method will take a multi-dimensional array and return a new associative array where the keys are built from all the nested keys, separated with the . character.

/blog/2018/04/11/laravel-5-splitting-an-array-into-its-keys-and-values-with-divide#content-example-use

The following examples demonstrate how to use the divide method separate an array into its key and value components: The final result would be:

/blog/2018/04/22/laravel-5-collections-sorting-a-collection-with-sort

The sort method is used to sort the collection. If no $callback is provided, the collection will be sorted using a case-insensitive "natural order" algorithm. An optional $callback can be supplied to customize the comparison that is used when...

/blog/2018/04/22/laravel-5-collections-testing-all-collection-values-with-every

The every method is used to determine if each element of the collection passes a given truth test. The every method can accept either a callback function to perform the truth test, or an operator and comparison value.

/blog/2023/05/04/best-practices-for-securing-your-development-projects#content-use-rigorous-quality-assurance-and-testing

…e software development. They allow you to identify and fix vulnerabilities in software applications, which cybercriminals can exploit. It'll minimize the chances of a security breach, data loss, or other forms of cyberattacks. You can also use...

/meerkat/the-where-filters#content-the-where-filter

The where filter accepts a comment property, a comparison operator, and a check value as its arguments. You may refer to the comment properties documentation to see what is available when using this filter (custom addon values are also supported)....