$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
Post a Comment