id(); $table->string('nama'); $table->string('nis')->unique(); // Nomor Induk Siswa $table->string('kelas'); $table->string('alamat')->nullable(); $table->string('telepon')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('siswa'); } };