id(); $table->integer('package_id'); $table->string('tour_start_date')->nullable(); $table->string('tour_end_date')->nullable(); $table->string('booking_end_date')->nullable(); $table->string('total_seat')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tours'); } };