Solve your laravel problems.
I insert my data with
DB::table('users')->insert( array('username' => $name, 'email' => $email, 'password' => $hashed_random_password));
I want to return the the id of this insert. Is there Laravel way to do this?