diff --git a/database/migrations/2026_04_28_234045_create_products_table.php b/database/migrations/2026_04_28_234045_create_products_table.php deleted file mode 100644 index c94eae7..0000000 --- a/database/migrations/2026_04_28_234045_create_products_table.php +++ /dev/null @@ -1,25 +0,0 @@ -id(); - $table->string('title')->nullable(); - $table->decimal('price', 15, 2)->nullable(); - $table->string('category')->nullable(); - $table->timestamps(); - $table->softDeletes(); - }); - } - - public function down() - { - Schema::dropIfExists('products'); - } -} diff --git a/resources/views/admin/type/products.blade.php b/resources/views/admin/type/products.blade.php deleted file mode 100644 index 29030b1..0000000 --- a/resources/views/admin/type/products.blade.php +++ /dev/null @@ -1,57 +0,0 @@ - [ - 'type' => 'string', - ], - 'price' => [ - 'type' => 'decimal', - ], - 'category' => [ - 'type' => 'string', - ], -]; - -/** - * --- Sütun Gruplandırma --- - */ -$blockGroup = [ - 'General' => array_keys($relationDatas), -]; - -?> - - - - - -
-
- - {{-- @include("admin.type.document.upload") --}} - - - @include("components.blocks.module-block") -
-
\ No newline at end of file