id(); $table->string('title'); $table->string('slug')->unique(); $table->longText('content'); $table->string('image')->nullable(); $table->timestamp('published_at'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('successes'); } };