Search

Showing 7 of 1,216 result(s)

/blog/2017/11/30/laravel-55-string-helper-method-finish#content-global-strfinish-helper-function

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

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

Here are a few examples with the result above the function call in comments: The kebab helper method is simply a wrapper around the snake helper method. Calling kebab($value) is equivalent to calling snake($value, '-') .

/blog/2017/11/30/laravel-55-string-helper-method-kebab#content-global-kebabcase-helper-function

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

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

Here are a few examples with the result above the function call in comments: