Monday, April 10, 2017

How to solve Missing argument 3 for Rinvex\Repository\Repositories\BaseRepository::join()?

I use this : https://github.com/rinvex/repository

My query is like this :

$query = $this->store_repository
    ->join('favorites', function ($join) {
        $join->on('stores.id', '=', 'favorites.favoritable_id')
            ->where('favorites.favoritable_type', 'like', 'App\\\Models\\\Store');
    })
    ->where('stores.status', '=', 1)
    ->select('stores.id', 'stores.name', 'stores.photo','stores.address');

if($location)
    $query->where('stores.address', 'like', "%$location%");

if($q) {
    $query->where('stores.name', 'like', "%$q%")
        ->where('stores.address', 'like', "%$q%", 'or');
}

$result = $query->orderBy('favorites.updated_at', 'desc')->paginate($num);

When executed, there exist error like this :

Missing argument 3 for Rinvex\Repository\Repositories\BaseRepository::join()

How can I solve it?



via moses toh

Advertisement