Explorar o código

Also delete the books when deleting an author

axkuhta hai 1 ano
pai
achega
be951034d4
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      app/Http/Controllers/AuthorController.php

+ 1 - 0
app/Http/Controllers/AuthorController.php

@@ -71,6 +71,7 @@ class AuthorController extends Controller {
 	}
 
 	function drop(Author $author) {
+		$author->books()->delete();
 		$author->delete();
 		return view("success");
 	}