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
@@ -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);
}
}