Shift with red gradient lettering
Loading navigation...

Adopt stringables

Premium
Laravel
Experimental

Convert Str calls to fluent stringable chains. If you are running Laravel 9, you may configure this task to use the new str() helper instead of prefixing a call to Str::of().

Before

Str::before(Str::lower('FooBar'), 'bar');

After

Str::of('FooBar')->lower()->before('bar');

← Back to the Workbench Tasks