id(); $table->string('pic'); $table->string('title'); $table->string('subtitle'); $table->decimal('price', 7,2)->default(0); $table->longText("describe")->nullable(); $table->integer('pv')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('services'); } };