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