Passed
Push — dev5a ( bf2271...c9bcfe )
by Ron
08:07
created
app/Domains/Customers/CustomerSearch.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -85,13 +85,13 @@
 block discarded – undo
85 85
             ->when(isset($searchData->name), function($q) use ($searchData)
86 86
             {
87 87
                 $q->where('name', 'like', '%'.$searchData->name.'%')
88
-                  ->orWhere('cust_id', 'like', '%'.$searchData->name.'%')
89
-                  ->orWhere('dba_name', 'like', '%'.$searchData->name.'%');
88
+                    ->orWhere('cust_id', 'like', '%'.$searchData->name.'%')
89
+                    ->orWhere('dba_name', 'like', '%'.$searchData->name.'%');
90 90
             })
91 91
             ->when($includeSystems, function($q)
92 92
             {
93 93
                 $q->with('CustomerSystems.SystemTypes')
94
-                  ->with('ParentSystems.SystemTypes');
94
+                    ->with('ParentSystems.SystemTypes');
95 95
             })
96 96
             ->paginate($pagination->perPage);
97 97
     }
Please login to merge, or discard this patch.