id(); $table->string('name'); $table->string('image')->nullable(); $table->boolean('status')->default(1); $table->string('slug',255)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('cuisines'); } }