19 lines
440 B
PHP
19 lines
440 B
PHP
<!DOCTYPE html>
|
|
<html lang="it">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Articoli Venduti</title>
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container mt-4">
|
|
<h1>Mostra Tabella: {{ $tableName }}</h1>
|
|
|
|
{!! $tableContent !!}
|
|
</div>
|
|
</body>
|
|
|
|
</html> |