id(); $table->string('name'); $table->text('description')->nullable(); $table->integer('duration_minutes'); $table->decimal('price', 10, 2); $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down() { Schema::dropIfExists('services'); } };