public function details_user($id){ $user= order::find($id); $userid=$user->id; $data=order::where(‘seller_id’,’=’,$userid)->get(); $sub_admin= user ::where(‘price’,’$data’)->count(); return view(‘admin.try’,compact(‘sub_admin’)); } I want to customers total order price and return it. laravel New contributor Eamun Islam Nabid is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code o..

Read more

I’m facing something strange. With Spring Boot 3.2.0 I’m trying to call a webservice expecting a Multipart form data.
The same code using RestClient only works when the code is intercepted through a RequestInterceptor. Only calling the execution method in the interceptor is enough to make the code work. Otherwise I get an error saying that the request is missing the “file”..

Read more