Question

I make fluent request with distinct and paginate. My problem is that the paginate request is execute before disinct request

My Fluent request :

$candidates = DB::table('candidates')
            ->select('candidates.*')
            ->distinct()
            ->join('candidate_region', 'candidates.id', '=', 'candidate_region.candidate_id')
            ->join('candidate_job', 'candidates.id', '=', 'candidate_job.candidate_id')
            ->whereIn('candidate_region.region_id', $inputs['region'])
            ->whereIn('candidate_job.job_id', $inputs['job'])
            ->where('imavailable', '1')
            ->where('dateDisponible', '<=', $inputs['availableDate'])
            ->paginate(15);

I test my request with DB::getQueryLog()

$query = DB::getQueryLog($candidates);

$query show that paginate request (with count) for make number page :

5 => 
array (size=3)
     'query' => string 'select count(*) as aggregate from `candidates` inner join `candidate_region` on `candidates`.`id` = `candidate_region`.`candidate_id` inner join `candidate_job` on `candidates`.`id` = `candidate_job`.`candidate_id` where `candidate_region`.`region_id` in (?, ?, ?, ?, ?) and `candidate_job`.`job_id` in (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) and `imavailable` = ? and `dateDisponible` <= ?' (length=396)

And my request with distinct is execute after paginate :

6 => 
array (size=3)
  'query' => string 'select distinct `candidates`.* from `candidates` inner join `candidate_region` on `candidates`.`id` = `candidate_region`.`candidate_id` inner join `candidate_job` on `candidates`.`id` = `candidate_job`.`candidate_id` where `candidate_region`.`region_id` in (?, ?, ?, ?, ?) and `candidate_job`.`job_id` in (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) and `imavailable` = ? and `dateDisponible` <= ? limit 15 offset 15' (length=417)

How to do for execute request distinct before the paginate ?

Thanks

Was it helpful?

Solution

Blind guess : try

DB::table('candidates')->...stuff...->get()->paginate(15)

Real answer: Create your paginator manually:

$candidates = DB::table('candidates')->...stuff...->get();

$paginator = Paginator::make($candidates, count($candidates), 15);

OTHER TIPS

<?php
     $presenter = new Illuminate\Pagination\BootstrapPresenter($candidates);
     $presenter->setLastPage($totalPages);
?>

@if ($totalPages> 1)
     <ul class="pagination">
          {{ $presenter->render() }}
     </ul>
@endif
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top