Completed
Pull Request — master (#59)
by
unknown
62:03
created
src/resources/lang/en/laravel-logger.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,11 +137,11 @@
 block discarded – undo
137 137
     |--------------------------------------------------------------------------
138 138
     */
139 139
 
140
-   'messages' => [
140
+    'messages' => [
141 141
         'logClearedSuccessfuly'   => 'Activity log cleared successfully',
142 142
         'logDestroyedSuccessfuly' => 'Activity log deleted successfully',
143 143
         'logRestoredSuccessfuly'  => 'Activity log restored successfully',
144
-   ],
144
+    ],
145 145
 
146 146
     /*
147 147
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
src/resources/lang/de/laravel-logger.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,11 +137,11 @@
 block discarded – undo
137 137
     |--------------------------------------------------------------------------
138 138
     */
139 139
 
140
-   'messages' => [
140
+    'messages' => [
141 141
         'logClearedSuccessfuly'   => 'Aktivitätslog erfolgreich geleert',
142 142
         'logDestroyedSuccessfuly' => 'Aktivitätslog erfolgreich gelöscht',
143 143
         'logRestoredSuccessfuly'  => 'Aktivitätslog erfolgreich wiederhergestellt',
144
-   ],
144
+    ],
145 145
 
146 146
     /*
147 147
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
src/app/Http/Controllers/LaravelLoggerController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@
 block discarded – undo
282 282
      */
283 283
     public function searchActivityLog($query,$requeset)
284 284
     {
285
-     if (config('LaravelLogger.descriptionSearch') && $requeset->get('description')) {
285
+        if (config('LaravelLogger.descriptionSearch') && $requeset->get('description')) {
286 286
         $query->where('description','like','%'.$requeset->get('description').'%');
287 287
     }
288 288
 
Please login to merge, or discard this patch.
src/config/laravel-logger.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     'logSuccessfulLogout'   => true,    // Successful Logout
44 44
 
45 45
 
46
-     /*
46
+        /*
47 47
     |--------------------------------------------------------------------------
48 48
     | Laravel Logger Search Enable/Disable
49 49
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.