Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Last active November 5, 2023 19:23
Show Gist options
  • Save fayqLs/e0128013944bbeb3ccbde601b2f2f04c to your computer and use it in GitHub Desktop.
Save fayqLs/e0128013944bbeb3ccbde601b2f2f04c to your computer and use it in GitHub Desktop.
EXCLUIR UM REGISTRO
<?php
$id = 34;
$produto = Produto::find($id);
if($produto)
{
$produto->delete();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment