increments('id'); $table->string('title'); $table->string('description'); $table->string('slug')->nullable(); $table->string('capacity')->nullable(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('menus'); } }