Advertisement
Guest User

Untitled

a guest
Oct 13th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public function cadastrar(Request $request)
  2. {
  3. $dados = $request->except('_token');
  4. $result = $request::create($dados);
  5. }
  6.  
  7. <form method="post" action="{{route('cadastrar')}}">
  8.  
  9. <input type="text" name="produto">
  10. <input type="text" name="descricao">
  11. <input type="text" name="modelo">
  12. <input type="submit" value="Ok">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement