I have a table cars
with attributes: id
, name
. I also have another table specs
with id
, car_id
, name
. This tables are related with one to many relations from the Models. I also have set up the foreign keys in.
I have a controller manageData
where i have a function insertCar
which i use to insert data and update both tables. I wan to create another function deleteCar
from where i can delete the car along with its specs from the other table
via Ardit Mata