[Vuejs]-Undefinded variable projets

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.

Leave a comment