@@ -55,7 +55,7 @@ |
||
55 | 55 | if ($this->cacheConfig && $this->cacheConfig == 'cache') |
56 | 56 | { |
57 | 57 | $page = \Request::get('page') ?? '1'; |
58 | - $cacheKey = $name . $page . serialize($arguments); |
|
58 | + $cacheKey = $name.$page.serialize($arguments); |
|
59 | 59 | return $this->cache->tags([$this->model])->rememberForever($cacheKey, function() use ($arguments, $name) { |
60 | 60 | return call_user_func_array([$this->repo, $name], $arguments); |
61 | 61 | }); |