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