id(); $table->foreignId('hotel_id')->constrained()->cascadeOnDelete(); $table->string('name'); $table->string('floor'); $table->json('images')->nullable(); $table->unsignedTinyInteger('bed_count')->default(1); $table->boolean('wide')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('rooms'); } };