15 lines
292 B
PHP
15 lines
292 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Images</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Images</h1>
|
||
|
<ul>
|
||
|
@foreach ($images as $image)
|
||
|
<li><img src="{{ asset('images/' . $image) }}"></li>
|
||
|
@endforeach
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|