Level 2
And this is how I call my file :
{{asset('storage/' . $lesson->file )}}
Sorry
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 !
Please or to participate in this conversation.