id(); $table->string('image'); $table->string('heading')->nullable(); $table->string('title')->nullable(); $table->string('author_name'); $table->string('author_designation'); $table->longText('review'); $table->enum('status',['1','2']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('testimonials'); } }