increments('id'); $table->integer('user_id')->nullable(); $table->text('user_type')->nullable(); $table->string('title', 255)->nullable(); $table->string('slug', 255)->nullable(); $table->string('subtitle', 255)->nullable(); $table->longText('description')->nullable(); $table->text('icon')->nullable(); $table->text('features_icon')->nullable(); $table->string('color', 255)->nullable(); $table->string('meta_title', 255)->nullable(); $table->string('meta_description', 255)->nullable(); $table->string('meta_tags', 255)->nullable(); $table->string('meta_subtitle', 255)->nullable(); $table->string('highlights', 255)->nullable(); $table->string('features', 255)->nullable(); $table->text('images')->nullable(); $table->text('demo_screenshots')->nullable(); $table->text('login_details')->nullable(); $table->text('testimonials')->nullable(); $table->enum('published', ['yes','no'])->nullable(); $table->enum('status', ['show','hide'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('products'); } }