in Education by
How can I display images from the storage folder (outside public)? I stored my image files in storage/usernamee, but I'm unable to show it in the view. How can I move the upload into "storage/images/" (under a folder name "images")? View @method('put') @csrf
User Picphoto) }}" id="profile-image1" class="img-circle img-responsive">
click here to change profile image
id }}"> Controller public function updateprofil(Request $request) { $request->validate(['cin' => 'size:8']); if ($request->hasFile('pic')) { $image = $request->file('pic'); $filename = time() . '.' . $image->getClientOriginalExtension(); Image::make($image)->resize(300, 300)->save(storage_path("app/usernamee/" . $filename)); $request->pic = $filename; } $membre = Membre::findOrFail($request->membre_id); $membre->photo = 'app/usernamee/' . $request->pic; $membre->update($request->all()); return redirect('profil'); } This is my view of user profile PS: The update method works for informations update but doesn't work for the photo. JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
You either or need to: 1) need to save the image in storage/app/public directory - First you need to symlink the storage path to public: php artisan storage:link Then your way should work. 2) Create a route to return the image. Route::get('show-image/{id}', function() { $membre = Membre::findOrFail($id); $file = storage_path($membre->photo); return response()->file($file); })

Related questions

0 votes
    I have a blade template that creates a form. The form uses a foreach loop to iterate through a ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 10, 2022 in Education by JackTerrance
0 votes
    I have a blade template that creates a form. The form uses a foreach loop to iterate through a ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 22, 2022 in Education by JackTerrance
0 votes
    We have a big system with hundreds of models (Users, Employees, Payments, Tasks, Projects, and so on ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 15, 2022 in Education by JackTerrance
0 votes
    We have a big system with hundreds of models (Users, Employees, Payments, Tasks, Projects, and so on ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 13, 2022 in Education by JackTerrance
0 votes
    We have a big system with hundreds of models (Users, Employees, Payments, Tasks, Projects, and so on ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 10, 2022 in Education by JackTerrance
0 votes
    We have a big system with hundreds of models (Users, Employees, Payments, Tasks, Projects, and so on ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I am using datatable with Laravel to order a response that i receive from an API I connect to the ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 23, 2022 in Education by JackTerrance
0 votes
    WAP to obtain 2 numbers from the user and then display the maximum number out of these 2 numbers and also display ... . (5 Points) Select the correct answer from above options...
asked Dec 28, 2021 in Education by JackTerrance
0 votes
    wap to obtain 2 numbers from the user and then display the maximum number out of those 2 numbers and also display ... from the number?n Select the correct answer from above options...
asked Dec 25, 2021 in Education by JackTerrance
0 votes
    I have already tried to make a login form and I also want to display the user login profile that ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 19, 2022 in Education by JackTerrance
0 votes
    I have already tried to make a login form and I also want to display the user login profile that ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    Write a program to accept a filename from the user and display all the lines from the file which contain python comment character ‘#’. Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    Write an algorithm to accept radius of a circle from user, and display area of the circle using the formula: area ... x radius x radius Select the correct answer from above options...
asked Nov 27, 2021 in Education by JackTerrance
0 votes
    I'm trying to assemble and display image slices which have been preloaded into a two dimensional array, but ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 16, 2022 in Education by JackTerrance
0 votes
    How to get callback in our app when user delete song from music app. Is there any solution? Thanks ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
...