Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. public function Clientes ()
  2. {
  3. return $this->hasMany("Clients"); //conectando as tabelas 'users' e 'clients' do banco de dados
  4. }
  5.  
  6. <form method="POST" action="/user/update/client">
  7.  
  8. <input type="hidden" name="id" value="{{$id}}" />
  9.  
  10. <h1>BEM VINDO ADMINISTRADOR!</h1>
  11.  
  12. <div><input type="button" value="Início" id="inicio" name="Início" onclick="window.location.href='/inicioadm';"></div> <br>
  13.  
  14. @foreach ($clients as $client)
  15.  
  16. <table style="width:100%">
  17. <tr>
  18. <th width="30%"><p>Nome: {{$client->Nome}} <input name="clientes[]" type="checkbox" value="{{$client->ID}}"> </p></th>
  19. </tr>
  20. </table>
  21.  
  22. @endforeach
  23.  
  24. <br><div><input type="submit" value="Salvar" id="salvar" name="Salvar" onclick="window.location.href='/desenvolvedores"/div>
  25.  
  26.  
  27. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement