Multiple distinct(['field_a', 'field_b'])
with paginate()
- ORM select return error when calculate
total
rows forpagination
SomeModel::select(['*'])
->distinct(['field_a', 'field_b'])
->orderBy('field_a')
->orderBy('field_b')
->paginate($perPage)
- Exception example
SQLSTATE[42883]: Undefined function: 7 ERROR: function count(bigint, bigint) does not exist\nLINE 1: select count(distinct \"field_a\", \"field_b\") as aggregate from \"...\n
composer require larahook/distinct-on-pagination
- Add
DistinctOnPagination
trait inSomeModel
class - Pagination total must be calc without Exception
class SomeModel extends Model
{
use DistinctOnPagination; // <-- add DistinctOnPagination trait
use HasFactory;
/** @var string */
protected $table = 'some_table';
}
- You can also publish the config file to change implementations (concat delimiter)
php artisan vendor:publish --provider="Larahook\DistinctOnPagination\DistinctOnPaginationServiceProvider" --tag=config