id(); $table->string('name')->nullable(); $table->string('slug')->nullable(); $table->text('description')->nullable(); $table->string('country')->nullable(); $table->string('language')->nullable(); $table->string('currency')->nullable(); $table->string('area')->nullable(); $table->string('timezone')->nullable(); $table->text('visa_requirement')->nullable(); $table->text('activity')->nullable(); $table->text('best_time')->nullable(); $table->text('health_safety')->nullable(); $table->text('map')->nullable(); $table->string('featured_photo')->nullable(); $table->integer('view_count')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('destinations'); } };