php - I have two pivot tables but I want to insert into one when I run a function, how do I do this?

one text

Solution:

If your relationships are correct you can use attach() to save to the pivot:

auth()->user()->likes()->attach(auth::id(), ['column' => 'value']);

The reason your save is updating the same table is because you are pretty much using the exact same relationship so eloquent doesn't know about your post_user_saves table what you would need to do is Create a model Save() then rename your migration to save_users and update your relationship accordingly.

Source