'Cannot download file in Laravel 8 using spatie/laravel-medialibrary

I'm trying to download a file stored in my Larval 8 Storage folder, but I can't. That page shows me "404 not found." What am I doing wrong here?

@php $i=0 @endphp
@foreach($form_22->getMedia('file') as $item)
<tr>
    <td>
        {{$i}}
    </td>
    <td>
        {{$item->name}}
    </td>
    <td>
        @if($item->getFullUrl())
        <br>
        <a class="" target="_blank"
           href="{{$item->getFullUrl()}}">{{($item->file_name)}}
        </a>
        &nbsp;
        <a data-array="{{$i}}" href="javascript:void(0)"
           class="text-dark btn-file-delete">
            <i class="fas fa-times"></i>
        </a>
        @endif
    </td>
</tr>
@php $i++ @endphp
@endforeach


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source