In Your Controller Change Like this
return view('admin.post.index', ['posts' => $posts['data']]);
In Your Model Modify the getAll Method
return $post->orderByRaw($sort)->paginate($itemPerPage);
return paginate result directly
Laravel links() method requires Paginator object but your passing an array.