How to Replace the First Occurrence of a String in Laravel 9
In this lesson, we are going to see how to replace the first occurrence of a string in Laravel 9, the replaceFirst helper method is used to replace the first occurrence of a given string.
The Str::replaceFirst helper method
The replaceFirst() method is used to replace the first occurrence of a given string.
use Illuminate\Support\Str;
$website = 'http://www.website.com';
$website = Str::replaceFirst('http', 'https', $website);
echo $website;
// Returns "https://www.website.com"