diff --git a/database/migrations/2022_02_15_233439_modify_categories_tables.php b/database/migrations/2022_02_15_233439_modify_categories_tables.php index 857a3f72..b09acafd 100644 --- a/database/migrations/2022_02_15_233439_modify_categories_tables.php +++ b/database/migrations/2022_02_15_233439_modify_categories_tables.php @@ -9,7 +9,7 @@ return new class extends Migration public function up() { Schema::table('categories', function (Blueprint $table) { - $table->tinyInteger('visible')->after('id'); + $table->tinyInteger('visible')->nullable()->after('id'); }); } }; diff --git a/resources/views/Admin/Botanic/Varieties/form.blade.php b/resources/views/Admin/Botanic/Varieties/form.blade.php index 69da977e..562ec17a 100644 --- a/resources/views/Admin/Botanic/Varieties/form.blade.php +++ b/resources/views/Admin/Botanic/Varieties/form.blade.php @@ -25,6 +25,13 @@ +