id(); $table->string('name')->unique()->comment('free | basic | plus | pro'); $table->string('stripe_price_id')->nullable()->comment('Maps Cashier price ID to this plan'); $table->json('features'); $table->boolean('active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('plans'); } };