how to set capital letter to the first letter in a tag li laravel code example
Example: laravel uppercase first letter
use Illuminate\Support\Str;
...
$string = Str::ucfirst('foo bar');
use Illuminate\Support\Str;
...
$string = Str::ucfirst('foo bar');