increments('id'); $table->text('branch')->nullable(); $table->string('address', 255)->nullable(); $table->string('mail', 255)->nullable(); $table->string('phone', 255)->nullable(); $table->string('latitude', 255)->nullable(); $table->string('longitude', 255)->nullable(); $table->enum('status', ['Show','Hide'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('branches'); } }