Как сделать один прирост после поста в коллективе Laravel Collective

Category::find($CategoryId)->increment('post',1);
         or
$new_post = Category::where('id','=',Request::input('category'))->first();
$new_post->increment('post',1);
nk jangid