Laravel 8 ucfirst {#collection-method}
ucfirst
方法用于将指定字符串转换为首字母大写的形式并将其返回:
use Illuminate\Support\Str;
$string = Str::of('foo bar')->ucfirst();
// Foo bar
ucfirst
方法用于将指定字符串转换为首字母大写的形式并将其返回:
use Illuminate\Support\Str;
$string = Str::of('foo bar')->ucfirst();
// Foo bar