# 🚀 Quick Fix: Foto Aset Pecah

## Masalah
Foto aset tidak muncul (broken image) di halaman Daftar Aset.

## Root Cause
1. ❌ Kode view: `Storage::url()` tanpa namespace
2. ❌ Symlink rusak: folder `aset-photos` tidak accessible

## Solusi (2 Langkah)

### 1️⃣ Recreate Storage Symlink
```bash
# Hapus symlink lama
Remove-Item -Path public\storage -Force -Recurse

# Buat symlink baru
php artisan storage:link
```

### 2️⃣ Clear Cache
```bash
php artisan view:clear
php artisan cache:clear
php artisan config:clear
```

## Verifikasi
```bash
# Cek symlink
Get-Item public\storage | Select-Object LinkType, Target

# Cek folder accessible
dir public\storage\aset-photos
```

**Expected Result:**
- ✅ LinkType: Junction
- ✅ Target: C:\laragon\www\laravel-13\storage\app\public
- ✅ Folder aset-photos dan file-nya terlihat

## Status: ✅ SELESAI

Foto aset sekarang sudah muncul dengan benar di:
- Index/List aset
- Detail aset
- Form edit aset

---
**Catatan:** File view sudah diperbaiki menggunakan `asset('storage/' . $aset->foto)` untuk konsistensi.
