Ken 9 ore fa
parent
commit
7562f99345
1 ha cambiato i file con 0 aggiunte e 2 eliminazioni
  1. 0 2
      app/Services/UserService.php

+ 0 - 2
app/Services/UserService.php

@@ -102,9 +102,7 @@ class UserService extends BaseService
     {
         $limit = isset($search['limit']) ? $search['limit'] : 15;
         $paginator = static::$MODEL::where(self::getWhere($search))->with(['wallet'])
-
             ->orderByDesc('users.created_at')->paginate($limit);
-
         return ['total' => $paginator->total(), 'data' => $paginator->items()];
     }