id(); $table->integer('tour_id'); $table->integer('package_id'); $table->integer('user_id'); $table->integer('total_person'); $table->string('paid_amount')->nullable(); $table->string('payment_method')->nullable(); $table->string('payment_status')->nullable(); $table->string('invoice_no')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('bookings'); } };