simple user search and pagination

This commit is contained in:
Nabeel Shahzad
2017-12-22 15:11:27 -06:00
parent 50ede116ca
commit 81ac281d9f
7 changed files with 74 additions and 21 deletions

View File

@@ -1,11 +1,14 @@
<?php
namespace App\Repositories;
use App\Models\Enums\PilotState;
use App\Models\User;
use App\Repositories\Traits\CacheableRepository;
use Illuminate\Http\Request;
use Prettus\Repository\Contracts\CacheableInterface;
use App\Models\User;
use App\Models\Enums\PilotState;
use App\Repositories\Criteria\WhereCriteria;
use App\Repositories\Traits\CacheableRepository;
class UserRepository extends BaseRepository implements CacheableInterface
{
use CacheableRepository;
@@ -36,4 +39,31 @@ class UserRepository extends BaseRepository implements CacheableInterface
$users = $this->orderBy('created_at', 'desc')->findWhere($where)->count();
return $users;
}
/**
* Create the search criteria and return this with the stuff pushed
* @param Request $request
* @param bool $only_active
* @return $this
* @throws \Prettus\Repository\Exceptions\RepositoryException
*/
public function searchCriteria(Request $request, bool $only_active = true)
{
$where = [];
if($only_active) {
$where['state'] = PilotState::ACTIVE;
}
if ($request->filled('name')) {
$where['name'] = $request->name;
}
if ($request->filled('email')) {
$where['email'] = $request->email;
}
$this->pushCriteria(new WhereCriteria($request, $where));
return $this;
}
}