0👍
public function projet(){
$projets = Projet::latest()->paginate(15);
return response()->json(['data' => $projets]);
}
You are not sending the JSON encoded response from your function.
- [Vuejs]-Loading lottie-web animation issue vuejs
- [Vuejs]-How to call vue list data property in an if statement
Source:stackexchange.com