芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/reginaeigbe.com/folder/admin/tmp/app/Repositories/Admin/AuthRepository.php
update([ 'name' => $request->name, 'about' => $request->about, ]); } /** * Change password */ public function changePassword(PasswordChangeRequest $request): void { Auth::user()->update([ 'password' => Hash::make($request->password), ]); } }