Search

Showing 7 of 1,697 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-sortlocalestring-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_LOCALE_STRING 7 6 3 1 0 5 2 11 10 9 4 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/2016/12/07/laravel-artisan-custom-styles-custom-progress-bar-styles#content-styling-text-within-progress-bars

Progress bar format strings can utilize the color formatting syntax and strings to have various parts of the progress bar rendered with different styling. The process is similar to how custom styles are used when printing lines of text or...

/blog/2017/11/27/laravel-55-helper-function-after

The after method can be used to return a part of a string after the first occurrence of a $search character. This method can be used to help parse URL query strings, or to quickly find substrings based on a certain character.The signature of the...