Internal Server error during file uploading in laravel5.3
问题 I am trying to upload a file in laravel.But every time i hit the submit button it gives me the internal server error in the console. I have checked the rote with a get request to check if the controller function is working properly and it works fine. Can any say what is the problem? here is my code samples route code Route::post('/storefile','PublicationController@storeFile'); controller public function storeFile(Request $request){ if($request->ajax()){ echo "got"; } else echo "not ajax"; }