@if ($imageId) @php $media = \App\Models\Media::find($imageId); @endphp @if ($media && $media->path)
{{ $media->alt_text ?: 'Preview image' }}

{{ $media->alt_text ?: $media->filename }}

@if ($media->alt_text)
Alt Text: {{ $media->alt_text }}
@endif @if ($media->caption)
Caption: {{ $media->caption }}
@endif
@else

Image not found

@endif @else

{{ $placeholder }}

@endif