first commit

This commit is contained in:
2026-05-14 15:28:23 +08:00
commit 4fad704fd2
4034 changed files with 1093582 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class PbtpayController extends Controller
{
//
public function checkout(Request $request){
$bil = PbtpayBil::where('modul', 'LIKE', $request->input('modul'))
->where('jenis', 'LIKE', $request->input('jenis'))
->where('permohonan_id', $request->input('id'))->first();
//klu xde, create bil
//`client_id`, `total`, `title`, `subjek`, `keterangan`, `name`, `email`, `mobile`, `modul`, `jenis`, `permohonan_id`, `amount`, `noakaun`, `nobil`
}
}