tuandm / laravue

Admin dashboard for enterprise Laravel applications built by VueJS and Element UI https://laravue.dev
https://laravue.dev
MIT License
2.21k stars 654 forks source link

Move file to public_path error 500 #268

Closed vulam8x closed 3 years ago

vulam8x commented 3 years ago

I passed the file variable to the controller but when moving to public_path images there was an error of 500

My code to move file:

public function store(Request $request){ ... $request->photo->move(public_path('images'), $photoName); ... }