increments('id'); $table->string('slug', 255)->nullable(); $table->string('name', 255)->nullable(); $table->enum('status', ['Show','Hide'])->nullable(); $table->integer('order')->nullable(); $table->float('price')->nullable(); $table->text('details')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('pricelists'); } }