Laravel 5: Querying a many to many relationship without "pivot" in the result
Use the pluck()
method:
$user->favouriteBooks()->pluck('book_id');
I recommend putting pivot in the hidden array like in user.php:
protected $hidden = ['pivot'];
which would remove pivot from all json's returned.