Laravel 8 prepend {#collection-method}
prepend
方法用于在指定字符串的开头插入另一指定字符串:
use Illuminate\Support\Str;
$string = Str::of('Framework')->prepend('Laravel ');
// Laravel Framework
prepend
方法用于在指定字符串的开头插入另一指定字符串:
use Illuminate\Support\Str;
$string = Str::of('Framework')->prepend('Laravel ');
// Laravel Framework