Tuesday, April 4, 2017

Laravel 4 - get last id from tabel

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?



via LeBlaireau

Advertisement