How can i delete Hasmany relation data.One more think i want to delete only has_student data.
$user->has_student->delete();
Error: Collection doesn't has delete method.
How can i delete Hasmany relation data.One more think i want to delete only has_student data.
$user->has_student->delete();
Error: Collection doesn't has delete method.
Copyright © 2021 Jogjafile Inc.
you need to detach your relationships to delete them.
You can follow the more here