Image is not retrieved in controller in laravel -


 $this->validate($request,[         'title'=>'string|required',         'image.*'=>'required|image|mimes:jpeg,png,jpg,gif'     ]);      $image=$request->image;     return response()->json($image); 

the image not showing file in controller of laravel 5.3


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

android - How to prevent keyboard from closing when bottom dialog is open? -