Slowhand's avatar

The requested resource /storage was not found on this server.

Hi all.

I'm trying to display my uploaded files in my views, but I get this error.

In my controller :

$this->storeFile($lesson);

private function storeFile(Lesson $lesson) { if (request('file')) { $lesson->update([ 'file' => request('file')->store('lessons_file', 'public') ]); } }

I can see the files in Public/storage/lessons_file/name_of_the_file

Thanks a lot for your help !

0 likes
2 replies
Slowhand's avatar

And this is how I call my file :

{{asset('storage/' . $lesson->file )}}

Sorry

bataino's avatar

Have you been able to solve it?

I'm also facing the same issue at the moment.

Please or to participate in this conversation.