Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Last active June 24, 2021 21:38
Show Gist options
  • Save fayqLs/4e73967fa7dc1257c849d5292cdde951 to your computer and use it in GitHub Desktop.
Save fayqLs/4e73967fa7dc1257c849d5292cdde951 to your computer and use it in GitHub Desktop.
BUSCAR O REGISTRO
<?php
$id = 1;
$objeto = Produto::find($id); // BUSCA O REGISTRO
if($objeto) // SE EXITIR
{
$nome = $objeto->nome; // ATRIBUI O VALOR DO CAMPO NA VARIÁVEL
$celular = $objeto->celular;
$email = $objeto->email;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment