I'm trying to convert a string to lowercase in a views page (index.blade.php)
The following is what I would like to achieve.
<img src="images/teamnamesml.jpg logo">
This is my attempt
<img src="images/{{ Str::lower($matchup->visitorTeam) }}sml.jpg">
I get this error
FatalErrorException in ed1bb29e73e623d0f837c841ed066275 line 71:
Class 'Str' not found
Do I have to import the class Illuminate\Support\Str to a specific file?
Strshould be in the global namespace. Did you try\Str::lower()with the leading slash?strtolowerexists already)\Str::lower()does not work