@props(['file', 'caption' => null]) @php // Bild aus public/img/docs/ — solange keiner da ist, zeigt ein Platzhalter // exakt den Dateinamen, den du ablegen musst. $rel = 'img/docs/' . $file; $exists = is_file(public_path($rel)); @endphp
@if ($exists) {{ $caption ?? $file }} @else

Screenshot hier ablegen:

public/img/docs/{{ $file }}
@endif @if ($caption)
{{ $caption }}
@endif