- UI Investasi
- UI Donasi
## No issue
This commit is contained in:
2024-08-01 16:48:54 +08:00
parent 810ce1c00d
commit 2ab3a8abb1
135 changed files with 2222 additions and 1652 deletions

View File

@@ -0,0 +1,24 @@
import prisma from "@/app/lib/prisma";
export async function notifikasiToUser_CreateKabarDonasi({
donasiId,
}: {
donasiId: string;
}) {
const getDonatur = await prisma.donasi_Invoice.findMany({
where: {
donasiId: donasiId,
},
select: {
Donasi: {
select: {
id: true,
authorId: true,
title: true,
},
},
},
});
console.log(getDonatur)
}