Initial commit for combined ProjectKP

This commit is contained in:
raditarahman5-cloud
2026-06-28 15:14:51 +07:00
commit ac6c3473d4
203 changed files with 41848 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
require __DIR__ . '/vendor/autoload.php';
$app = require_once __DIR__ . '/bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
$kernel->bootstrap();
$token = \Illuminate\Support\Facades\DB::table('personal_access_tokens')->first(); // wait, backend holds tokens, not frontend. Frontend uses session.
// So we can't easily test without a token.