18 lines
337 B
PHP
18 lines
337 B
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Foto Pelanggan</title>
|
|
</head>
|
|
<body>
|
|
<h2>Foto dengan Token</h2>
|
|
|
|
@foreach($photos as $photo)
|
|
<img src="{{ asset('storage/' . $photo->file_path) }}" width="200" alt="Foto">
|
|
@endforeach
|
|
|
|
<br>
|
|
<a href="/">Kembali</a>
|
|
</body>
|
|
</html>
|