increments('id'); $table->string('title', 255)->nullable(); $table->text('detail')->nullable(); $table->text('image')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('our_services'); } }