id(); $table->string('name', 150); $table->enum('reading_type', ['free', 'profiling', 'quadrige']); $table->decimal('price', 10, 2)->default(0.00); $table->text('description')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('offers'); } };