-
-
Save fayqLs/4e73967fa7dc1257c849d5292cdde951 to your computer and use it in GitHub Desktop.
BUSCAR O REGISTRO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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