increments('id'); $table->text('title')->nullable(); $table->text('description')->nullable(); $table->text('features')->nullable(); $table->text('price')->nullable(); $table->text('quantity')->nullable(); $table->enum('stock_status', [In Stock])->nullable(); $table->text('product_images')->nullable(); $table->enum('status', [show])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('products'); } }