id(); $table->foreignId('page_id')->nullable()->constrained()->onDelete('cascade'); $table->string('name'); $table->string('position')->nullable(); $table->text('content'); $table->integer('rating')->default(5); $table->string('avatar')->nullable(); $table->boolean('is_active')->default(true); $table->integer('sort_order')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('testimonials'); } };