@extends('layouts.app') @section('content') @php $imagensCadastradas = collect(); if (isset($imovel) && $imovel->fotos && $imovel->fotos->count()) { $imagensCadastradas = $imovel->fotos->map(function ($img) { return [ 'id' => $img->id, 'data' => asset('storage/' . $img->caminho), 'descricao' => $img->descricao, 'isMapa' => false, ]; }); } @endphp