id(); $table->foreignId('user_id')->nullable()->constrained('users')->nullOnDelete(); $table->string('nama_perunding'); $table->string('no_pendaftaran_syarikat')->nullable(); $table->text('alamat')->nullable(); $table->string('emel')->nullable(); $table->string('telefon')->nullable(); $table->boolean('aktif')->default(true); $table->timestamps(); $table->softDeletes(); $table->index('aktif'); $table->index('nama_perunding'); }); } public function down(): void { Schema::dropIfExists('consultants'); } };