Search code examples
phpfile-uploadlaravel-8laravel-9

Storage::url($h->name) not working Laravel 9


I can't view the picture I saved under stroge/app/public/cars Storage::url($h->name) not working but when i write it like this {{$h->name}} inside the p tag i see this : /storage/cars/oJxxg1uYAkl0rNPoaQcVj8ycTbpB34daKEpgVi5l.png

@php
     $images = \Illuminate\Support\Facades\DB::table('images')->where('ilan_id',$rs->file)->get();
    @endphp
    @foreach($images as $h)
     <img id="imageharrik" width="50px" height="50px" class="normal" src="{{\Illuminate\Support\Facades\Storage::url($h->name)}}">
    @endforeach

Solution

  • first
    rm -R public/storage and again php artisan storage:link

    this is work for me good luck :)