id(); $table->string('name'); //$table->integer('price'); $table->decimal('price', 15, 2)->nullable(); $table->string('type')->default('month'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('packages'); } }