id(); $table->text('quote'); $table->string('author_name'); $table->string('context')->nullable(); $table->string('photo_path')->nullable(); $table->string('photo_alt')->nullable(); $table->integer('sort_order')->default(0); $table->boolean('is_featured')->default(false)->index(); $table->timestamp('published_at')->nullable()->index(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('testimonials'); } };