I have tables: categories & items table which has a foreign key of $category_id. How can I delete a category and make f-key nullable on items table? – Laravel
I can't delete a category because it is a foreign key in the items table. How can I do it? How can I make a deletion in category and make $category_id null in the items table? I tried making a…