This commit is contained in:
hafifierahman
2022-06-05 10:56:12 +08:00
parent 2669d3aa8e
commit 4e1ff3bd6b
4 changed files with 12 additions and 1 deletions
@@ -1863,6 +1863,7 @@ class AdminPageController extends Controller
$permohonan->baki_petibesi = $request->bakipetibesi;
$permohonan->amaun_mohon = $request->jumlahmohon;
$permohonan->nama_pemohon = $request->namapemohon;
$permohonan->jawatan_pemohon = $request->jawatanpemohon;
$permohonan->tarikh_permohonan = $request->tarikhmohon;
$permohonan->outstandingsemasa = $request->outstanding;
$permohonan->nopermohonan = $nopermohonan;
@@ -313,4 +313,13 @@ class TransactionOnlineController extends Controller
'lelong' => $akanlelongarray
),200);
}
public function updateTagPortal(Request $request){
$transaction = TransactionOnline::on('mysql7')->where('billplz_id','=',$request->billplz_id)->update(array(
'tagportal' => 1
));
return response()->json($transaction,200);
}
}