id(); $table->string('name'); $table->timestamps(); }); DB::table('roles')->insert([ ['id' => 1, 'name' => 'Super admin'], ['id' => 2, 'name' => 'Company admin'], ['id' => 3, 'name' => 'Agent'], ['id' => 4, 'name' => 'Client'], ]); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('roles'); } };