b2in/resources/views/components/web-picture.blade.php
2026-04-10 17:18:17 +02:00

18 lines
706 B
PHP

@if ($hasWebp)
<picture>
<source srcset="{{ $webpSrc }}" type="image/webp">
<img src="{{ $src }}" alt="{{ $alt }}" class="{{ $class }}"
@if($loading) loading="{{ $loading }}" @endif
@if($width) width="{{ $width }}" @endif
@if($height) height="{{ $height }}" @endif
{{ $attributes->except(['src', 'alt', 'class', 'loading', 'width', 'height']) }}
/>
</picture>
@else
<img src="{{ $src }}" alt="{{ $alt }}" class="{{ $class }}"
@if($loading) loading="{{ $loading }}" @endif
@if($width) width="{{ $width }}" @endif
@if($height) height="{{ $height }}" @endif
{{ $attributes->except(['src', 'alt', 'class', 'loading', 'width', 'height']) }}
/>
@endif