I have three tables namely clients, orders & websites. The website has a belongsTo field which belongs to a client_id from "clients" table. I may need to change the client_id for a website which works fine with laravel Nova. In mycase I also need to change the client_id automatically for the particular website_id in the orders table whenever I change the client_id of a website.
In brief, whenever I change the owner of the website, all the orders made for the website in "orders" table need to be updated to the new owner. I can do it with laravel, but with Nova I am lost.