public function all_contact(){
$contacts = contacts::with('user')->orderBy('id','desc')->get()->paginate(5);
return response()->json([
'contacts'=>$contacts
],200);
}
It gives error:
Method Illuminate\\Database\\Eloquent\\Collection::paginate does not exist.