id(); $table->string('title'); $table->text('description'); $table->string('image')->nullable(); $table->string('button_url')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('services'); } };