I have been struggling to find out a way to reset the auto increment value in Laravel 4 but it seems that this functionality is not embedded in laravel 4 at least for now. so i
If you are using PostgreSQL:
PostgreSQL
public function resetAutoincrement() { $max = DB::table('users')->max('id') + 1; DB::statement('ALTER SEQUENCE users_id_seq RESTART WITH ' . $max); }