From 04952a32dff2d544fe03b9a85b92c7886bf208fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Tue, 28 Apr 2026 23:56:36 +0300 Subject: [PATCH] chore: remove unused file and associated references --- ...026_04_28_234045_create_products_table.php | 25 -------- resources/views/admin/type/products.blade.php | 57 ------------------- 2 files changed, 82 deletions(-) delete mode 100644 database/migrations/2026_04_28_234045_create_products_table.php delete mode 100644 resources/views/admin/type/products.blade.php 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