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.
Source:stackexchange.com
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.