id(); $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->string('alamat'); $table->string('telepon'); $table->enum('tipe_pengguna', ['super admin', 'admin'])->default('admin'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('admins'); } };