Showing 10 of 1,280 results.

Requiring Kint | Laravel and Kint Debugging

Since we are trying to get everything to work nicely with Kint, we should probably have Kint required in our project. Add this to your composer.json file (either in your require or require-dev section. I put mine in the require-dev section): 1 ......

Example Use | Laravel 5.5 String Helper Method: kebab

Here are a few examples with the result above the function call in comments: 1 use Illuminate \ Support \ Str ; 2 3 // my-words 4 echo Str :: kebab ( ' MyWords ' ) ; 5 6 // m-y-w-o-r-d-s 7 echo Str :: kebab ( ' MYWORDS ' ) ; 8 9 // The kebab...

Filter Search