Skip to content

Instantly share code, notes, and snippets.

@dieissonmartins
Created January 21, 2019 10:21
Show Gist options
  • Save dieissonmartins/bd3093269016329e822367036e01d52f to your computer and use it in GitHub Desktop.
Save dieissonmartins/bd3093269016329e822367036e01d52f to your computer and use it in GitHub Desktop.
Route::get('/', function () {
return view('welcome');
});
Route::get('/novarota', function(){
return '<h1>Primeira logica do Laravel</h1>';
});
Route::get('/novarota', function(){
return '<h1>Nova rota do laravel</h1';
});
/*
*rota para a listagem de produtos
*/
Route::get('/produtos','ProdutoController@lista');
/*
*rota para mostrar dados de um produto
*/
Route::get('/produtos/mostra','ProdutoController@mostra');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment