Skip to content

zendraxl/laravel-string

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Right now if we want to do any manipulation with strings we face same problem like with an array before collections where we have to read the code inside out.

$title = Str::title(Str::replaceArray('_', [' '], Str::snake('fooBar')));

Also Str object in Laravel does not accept the string that is being manipulated as the first argument across all methods like replaceArray().

It would be great to bring that kind of power and functionality to Laravel and surpass current language limitations.

$title = (new Str('fooBar'))->snake()->replaceArray('_', [' '])->title()->get();

Also add helper function to make it even cleaner.

$title = str('fooBar')->snake()->replaceArray('_', [' '])->title()->get();

Having dd() on that object is a must :D

$title = str('fooBar')->snake()->replaceArray('_', [' '])->dd()->title()->get();

About

Laravel String Object inspired by Laravel Collections

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages