diff src/Traits/Filterable.php @ 2:b44434aaa767

Moving around the components. Made a big step in the right direction with the Builder and named joins being accessible.
author luka
date Wed, 18 Jun 2025 22:28:47 -0400
parents 56d9c64d64aa
children
line wrap: on
line diff
--- a/src/Traits/Filterable.php	Mon Jun 09 23:07:17 2025 -0400
+++ b/src/Traits/Filterable.php	Wed Jun 18 22:28:47 2025 -0400
@@ -6,19 +6,6 @@
 {
     protected static $filters = [];
 
-    // End goal: 'column_name' 'operator' 'value'
-    // string:   name LIKE '%test%'
-    // value:    id = 3
-    // date:
-    //
-    //
-    // table
-    // column
-    // operator ? based on the value?
-    // value
-    // required joins
-    //
-
     public function scopeFilter($query, $validated)
     {
         $filters = static::$filters;