@php
$qrUrl = $point->qrcode ? Storage::disk('public')->url($point->qrcode) : null;
$photoUrl = $point->photo ? Storage::url($point->photo) : null;
@endphp
QR Code
@if($qrUrl)
@else
{{ __('No QR code available') }}
@endif
{{ __('Photo') }}
@if($photoUrl)
@else
{{ __('No photo provided') }}
@endif