here is my code:
$contents = Tag::where('user_id', $loggedUser)
->distinct('tag')
->paginate(100)->toArray();
As result i get all tags based on user id but with repetetion. can someone tell why distinct is not working?