Hiển thị ảnh có chứa https, http và không chứa https, http (ok)

@if ($post->featured_image)
    @if(Str::startsWith($post->featured_image, ['http://', 'https://']))
        <img src="{{ $post->featured_image }}" alt="Ảnh đại diện" class="img-thumbnail">
    @else
        <img src="{{ asset('storage/' . $post->featured_image) }}" alt="Ảnh đại diện" class="img-thumbnail">
    @endif
@else
    <img src="{{ asset('/assets/images/default.jpg') }}" alt="Ảnh đại diện" class="img-thumbnail">
@endif

Last updated

Was this helpful?