Os icones do bootstrap não estão aparecendo, estou tentando fazer a aula 04 "Parâmetros da request e URL" do curso Laravel, porém estou usando a versão 5.4, gostaria de saber se alguém tem alguma solução para esse problema, já realizei varias pesquisas e não consegui solucionar.
Verifiquei no console do navegador e aparece que o seguinte caminho não foi encontrado:
fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb:1 GET
http://localhost:8000/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb
Logo abaixo segue um simples html com o Glyphicon em uma tabela:
<!DOCTYPE html>
<html>
<head>
<title>Listagem de Produtos</title>
<link rel="stylesheet" type="text/css" href="/css/app.css">
</head>
<body>
<h1>Lista de Produtos</h1>
<table class="table table-bordered">
<tr>
<td>Teste</td>
<td>Teste 2</td>
<td>
<a href="#"><span class="glyphicon glyphicon-search" aria-hidden="true"></span></a>
</td>
</tr>
</table>
</body>
</html>