Search

Showing 7 of 1,975 result(s)

/blog/2016/11/30/laravel-collection-public-api-sortby#content-sortstring-result-comparison

Option Result Original Order 0 1 2 3 4 5 6 7 8 9 10 11 12 SORT_REGULAR 7 6 3 1 0 5 2 11 10 9 4 8 12 SORT_STRING 7 6 3 1 0 5 2 11 10 9 4 8 12

/blog/2016/11/30/laravel-collection-public-api-sortby#content-sortstring--sortflagcase-result-comparison

Option Result Original Order 0 1 2 3 4 5 6 7 8 9 10 11 12 SORT_STRING 7 6 3 1 0 5 2 11 10 9 4 8 12 SORT_STRING | SORT_FLAG_CASE 7 6 1 0 5 2 11 10 9 4 3 8 12

/blog/2016/11/30/laravel-collection-public-api-sortby#content-sortnatural-result-comparison

Option Result Original Order 0 1 2 3 4 5 6 7 8 9 10 11 12 SORT_REGULAR 7 6 3 1 0 5 2 11 10 9 4 8 12 SORT_NATURAL 7 6 3 1 0 5 2 11 10 9 4 8 12

/blog/2016/11/30/laravel-collection-public-api-sortby#content-sortnatural--sortflagcase-result-comparison

Option Result Original Order 0 1 2 3 4 5 6 7 8 9 10 11 12 SORT_NATURAL 7 6 3 1 0 5 2 11 10 9 4 8 12 SORT_NATURAL | SORT_FLAG_CASE 7 6 1 0 5 2 11 10 9 4 3 8 12

/blog/2018/02/20/laravel-5-string-translation-public-api#content-loader-load-vs-translator-load

Both the translator and file loader instances expose a load method with similar parameters, however, their usage is different. The loader, by design, is responsible for returning an array of the translation lines for the given $namespace , $group...

/blog/2018/02/20/laravel-5-string-translation-public-api#content-example-use-8

The following example will resolve a translator instance from the service container and get the current MessageSelector instance.