Let's get started quickly - In the past
$str = 'welcome-to-here';
return Str::of($str)->replace('-', ' ')->title(); // Welcome To Here
with headline()
$str = 'welcome-to-here';
return Str::of($str)->headline(); // Welcome To Here
return Str::headline($str); // Welcome To Here
I hope you enjoy the code.
Top comments (0)