18 lines
706 B
PHP
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
|