Search

Showing 7 of 1,216 result(s)

/blog/2017/11/27/laravel-55-string-helper-function-camel_case#content-example-use

The following examples will all return the string myWords : Again, the camel function does not affect the casing of any characters after the first one.

/blog/2017/11/27/laravel-55-string-helper-function-camel_case#content-camelcasevalue

The camel_case function is a shortcut to calling Str::camel . This function is declared in the global namespace.

/blog/2017/11/27/laravel-55-string-helper-function-studly#content-global-studlycase-helper-function

The studly_case function is a shortcut to calling Str::studly . This function is declared in the global namespace.

/blog/2017/11/30/laravel-55-string-helper-method-contains#content-example-use

The str_contains function is a shortcut to calling Str::contains . This function is declared in the global namespace.