service = $service; } /** * Display a listing of the resource. */ public function index(): Response|JsonResponse { return response()->noContent(); } /** * Show the form for creating a new resource. */ public function create(): Response|JsonResponse { return response()->noContent(); } /** * Store a newly created resource in storage. */ public function store(Request $request): Response|JsonResponse { return response()->noContent(); } /** * Display the specified resource. */ public function show(int $ContactId): Response|JsonResponse { return response()->noContent(); } /** * Show the form for editing the specified resource. */ public function edit(int $ContactId): Response|JsonResponse { return response()->noContent(); } /** * Update the specified resource in storage. */ public function update(Request $request, int $ContactId): Response|JsonResponse { return response()->noContent(); } /** * Remove the specified resource from storage. */ public function destroy(int $ContactId): Response|JsonResponse { return response()->noContent(); } }