Index: database/migrations/2025_09_30_194708_add_indexes_to_tables.php
===================================================================
--- database/migrations/2025_09_30_194708_add_indexes_to_tables.php	(revision 1dd045b40a2a8812f3422f2aff59c36bc5417a89)
+++ database/migrations/2025_09_30_194708_add_indexes_to_tables.php	(revision f9ebee39ffcf79b81c47bf1f3f6d25eb6dffb52a)
@@ -6,48 +6,48 @@
 class AddIndexesToTables extends Migration
 {
-public function up(): void
-{
-Schema::table('users', function (Blueprint $table) {
-$table->index('email', 'idx_users_email');
-});
+    public function up(): void
+    {
+        Schema::table('users', function (Blueprint $table) {
+            $table->index('email', 'idx_users_email');
+        });
 
-Schema::table('clients', function (Blueprint $table) {
-$table->index(['name', 'country'], 'idx_clients_name_country');
-});
+        Schema::table('clients', function (Blueprint $table) {
+            $table->index(['name', 'country'], 'idx_clients_name_country');
+        });
 
-Schema::table('batches', function (Blueprint $table) {
-$table->index('batch_code', 'idx_batches_batch_code');
-});
+        Schema::table('batches', function (Blueprint $table) {
+            $table->index('batch_code', 'idx_batches_batch_code');
+        });
 
-Schema::table('orders', function (Blueprint $table) {
-$table->index('status', 'idx_orders_status');
-});
+        Schema::table('orders', function (Blueprint $table) {
+            $table->index('status', 'idx_orders_status');
+        });
 
-Schema::table('payments', function (Blueprint $table) {
-$table->index('payment_status', 'idx_payments_payment_status');
-});
+        Schema::table('payments', function (Blueprint $table) {
+            $table->index('payment_status', 'idx_payments_payment_status');
+        });
+    }
+
+    public function down(): void
+    {
+        Schema::table('users', function (Blueprint $table) {
+            $table->dropIndex('idx_users_email');
+        });
+
+        Schema::table('clients', function (Blueprint $table) {
+            $table->dropIndex('idx_clients_name_country');
+        });
+
+        Schema::table('batches', function (Blueprint $table) {
+            $table->dropIndex('idx_batches_batch_code');
+        });
+
+        Schema::table('orders', function (Blueprint $table) {
+            $table->dropIndex('idx_orders_status');
+        });
+
+        Schema::table('payments', function (Blueprint $table) {
+            $table->dropIndex('idx_payments_payment_status');
+        });
+    }
 }
-
-public function down(): void
-{
-Schema::table('users', function (Blueprint $table) {
-$table->dropIndex('idx_users_email');
-});
-
-Schema::table('clients', function (Blueprint $table) {
-$table->dropIndex('idx_clients_name_country');
-});
-
-Schema::table('batches', function (Blueprint $table) {
-$table->dropIndex('idx_batches_batch_code');
-});
-
-Schema::table('orders', function (Blueprint $table) {
-$table->dropIndex('idx_orders_status');
-});
-
-Schema::table('payments', function (Blueprint $table) {
-$table->dropIndex('idx_payments_payment_status');
-});
-}
-}
Index: do.txt
===================================================================
--- todo.txt	(revision 1dd045b40a2a8812f3422f2aff59c36bc5417a89)
+++ 	(revision )
@@ -1,5 +1,0 @@
-order
-da se naprai nov vue poseben za order
-da se naprai dugminja za generiranje na packing list i invoice od order
-payment da se reshi
-order batches, za sekoj order da se prikazhuvaat asociranite batches
