Adefinir
Finale
laravel_project
resources
views
logs.blade.php
Go to the documentation of this file.
1
<!DOCTYPE html>
2
<html lang=
"fr"
>
3
4
<head>
5
<title>Game - Adefinir</title>
6
7
<meta charset=
"utf-8"
>
8
<meta name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
9
<meta name=
"csrf-token"
content=
"{{ csrf_token() }}"
>
10
11
<link rel=
"stylesheet"
href=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
>
12
<link rel=
"stylesheet"
href=
"https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity=
"sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
crossorigin=
"anonymous"
>
13
14
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"
></script>
15
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"
></script>
16
<script src=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
></script>
17
</head>
18
19
20
21
<body>
22
<div> Test </div>
23
<?php
24
if
(isset($_SESSION[
'logs'
]))
25
{
26
$logs = $_SESSION[
'logs'
];
27
print_r($logs);
28
}
29
?>
30
</body>
31
</html>
Generated by
1.8.20