each first lettter should be capital in string 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');