Level 29
Which version of Laravel you are using?
1 like
Method Illuminate\Support\Str::replace does not exist ??
$replaced = Str::replace('</h4>', "</h4>\n", $this->faq);
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
Please or to participate in this conversation.