id('testimonial_id'); $table->integer('preparationclasses_id')->nullable(); $table->string('name', 255)->nullable(); $table->string('student', 255)->nullable(); $table->string('rating', 255)->nullable(); $table->text('message')->nullable(); $table->string('thumb', 255)->nullable(); $table->text('remarks')->nullable(); $table->integer('display_order')->default(1); $table->integer('status')->default(1); $table->integer('createdby')->nullable(); $table->integer('updatedby')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('preparationclasstestimonials'); } };