uuid('id')->primary(); $table->string('cmnd_cccd')->unique(); $table->string('full_name'); $table->string('phone')->nullable(); $table->string('email')->nullable(); $table->jsonb('address')->nullable(); // Lưu cấu trúc: số nhà, phường, quận... $table->date('dob')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('customers'); } };