14 lines
416 B
PHP
14 lines
416 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Link Page</title>
|
|
</head>
|
|
<body>
|
|
<h1>Links</h1>
|
|
<a href="{{ route('qtanegativa', ['id' => 1]) }}">Mostra i Libri con Quantità negativa</a>
|
|
<br>
|
|
<a href="{{ route('checkPreOrder', ['id' => 1]) }}">Verifica Prevendita Articolo 1</a>
|
|
</body>
|
|
</html> |