0
<html>
<head>
  <link href="/css/app.css" rel="stylesheet">
  <title>Controle de estoque</title>
</head>
<body>
  <h1>Listagem de Produtos</h1>
  <table class="table">
  <?php foreach($produtos as $p): ?>
  <tr>
    <td><?= $p->nome ?></td>
    <td><?= $p->valor ?></td>
    <td><?= $p->descricao ?></td>
    <td><?= $p->quantidade ?></td>
  </tr>
 <?php endforeach ?>
  </table>
 </body>
 </html>
						
did not solve. I am using the Laravel 5.5, and it seems that it does not come installed some things, will that be why?
– Aly98