I have the following SQL query
SELECT * from autor where autor.Id_autor not in
(select ca.fk_autor from cntrl_autor ca
join autor a on a.Id_autor = ca.fk_autor
where ca.fk_doc=7993)
How can I convert it to how the Laravel query builder handles it?