all(); $rand = rand(111,999); $user = new User; $user->name = $rand; $user->email = $rand; $user->uid = u()->id; $user->phone = $rand; $user->password = Hash::make($rand); $user->save(); $return = back()->with("mesaj","Kullanıcı Eklendi"); echo $return ;