Return correct headers

This commit is contained in:
James Cole
2025-01-25 04:48:51 +01:00
parent 6f63ddf5b0
commit 663202bfc6
16 changed files with 31 additions and 21 deletions

View File

@@ -84,7 +84,7 @@ class TransactionController extends Controller
];
}
return response()->json($array);
return response()->api($array);
}
/**
@@ -122,6 +122,6 @@ class TransactionController extends Controller
];
}
return response()->json($array);
return response()->api($array);
}
}