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