increments('id'); $table->string('slug', 255)->nullable(); $table->string('name', 255)->nullable(); $table->string('image', 255)->nullable(); $table->string('banner', 255)->nullable(); $table->text('description')->nullable(); $table->enum('status', ['show','hide'])->nullable(); $table->string('facebook', 255)->nullable(); $table->string('tiktok', 255)->nullable(); $table->string('youtube', 255)->nullable(); $table->string('website', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('instructors'); } }