25 lines
902 B
PHP
25 lines
902 B
PHP
<?php
|
|
// File ini hanya untuk uji coba akses file
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test Akses File</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; margin: 20px; }
|
|
h1 { color: #333; }
|
|
.image-container { margin: 20px 0; }
|
|
img { max-width: 300px; border: 1px solid #ddd; margin: 10px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Test Akses File di storage/public</h1>
|
|
|
|
<div class="image-container">
|
|
<h2>File di design_photos</h2>
|
|
<img src="http://localhost:8000/storage/design_photos/1UsgLBgQPeugWpnHJfJ2Lhog8qXvv487wvN2SJ7n.png" alt="Test Image 1">
|
|
<img src="http://localhost:8000/storage/design_photos/4j1gVHz7Z2Cn5FDcyrORiQAKTH59IUq77xsT7SO6.png" alt="Test Image 2">
|
|
<img src="http://localhost:8000/storage/design_photos/B6RsnNEVYsqSfIeub9lGhnwhKttGwPdXQGYu42Eu.jpg" alt="Test Image 3">
|
|
</div>
|
|
</body>
|
|
</html>
|