Skip to content

Instantly share code, notes, and snippets.

@juizmill
Last active November 19, 2018 14:16
Show Gist options
  • Select an option

  • Save juizmill/6d75cec1cc3feb4254573111de40ade0 to your computer and use it in GitHub Desktop.

Select an option

Save juizmill/6d75cec1cc3feb4254573111de40ade0 to your computer and use it in GitHub Desktop.
Exemplo de retornos
<?php
$data = [
'fornecedor' => [
'id' => $fornecedor->ID_FORNECEDOR,
'text' => function () use ($fornecedor){
$nome = $fornecedor->RAZAOSOCIAL ;
if ($fornecedor->RAZAOSOCIAL == null) {
$nome = $fornecedor->FANTASIA;
}
return trim($fornecedor->ID_FORNECEDOR .' - '. $nome);
}
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment