Str::ucfirst 方法是把指定的字符串首字母大写,例如:
Str::ucfirst
use Illuminate\Support\Str; $string = Str::ucfirst('foo bar'); // Foo bar
关闭