id(); $table->integer('destination_id'); $table->string('featured_photo')->nullable(); $table->string('banner')->nullable(); $table->string('name')->nullable(); $table->string('slug')->nullable(); $table->text('description')->nullable(); $table->text('map')->nullable(); $table->string('price')->nullable(); $table->string('old_price')->nullable(); $table->integer('total_rating'); $table->integer('total_score'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('packages'); } };