19 lines
413 B
PHP
19 lines
413 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie-edge">
|
|
<title>REALNews</title>
|
|
</head>
|
|
<body>
|
|
<h1>Novinesky</h1>
|
|
<p>Tu su novinky<p>
|
|
<ol>
|
|
@foreach ($brand as $item)
|
|
<li>{{ $item }}</li>
|
|
@endforeach
|
|
</ol>
|
|
</body>
|
|
</html>
|