Published in Laravel

Laravel String Helper Function: lower

The lower helper method takes a given value and returns a lower cased variant.

The signature for the lower helper function is:

lower($value)

1use Illuminate\Support\Str;
2
3// all lower cased
4echo Str::lower('ALL LOWER CASED');