We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello all,
how can we use relation has many for delete and update
for example i have a user which has many posts
i want to make one query
currently i'm doing this
$data = array('status'=>'0'); $query = $this->users_model->update($data,$id); $query_posts = $this->posts_model->where('user_id',$id)->update($data);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hello all,
how can we use relation has many for delete and update
for example i have a user which has many posts
i want to make one query
currently i'm doing this
The text was updated successfully, but these errors were encountered: