Which version of Laravel you are using?
May 11, 2021
5
Level 14
Str::replace does not exist.
Method Illuminate\Support\Str::replace does not exist ??
$replaced = Str::replace('</h4>', "</h4>\n", $this->faq);
Level 75
Use php function str_replace
$replaced = str_replace('</h4>', "</h4>\n", $this->faq);
https://www.php.net/manual/en/function.str-replace.php
Str::replace doesn't exist.
Only on fluet helper
https://laravel.com/docs/8.x/helpers#method-fluent-str-replace
3 likes
Please or to participate in this conversation.