added statistic cards

This commit is contained in:
Jagad R R
2025-01-01 23:59:49 +07:00
parent 1882e7a442
commit d305fa179e
9 changed files with 147 additions and 25 deletions
-9
View File
@@ -139,12 +139,3 @@ Route::middleware(['auth:admin', 'menu'])->group(function () {
Route::get('/auth/menu-tree/{id}', [MenuRoleController::class, 'index'])->name('auth.menurole.index');
Route::post('/auth/menu-tree/submit', [MenuRoleController::class, 'saveMenu'])->name('auth.menurole.submit');
});
Route::get('/test-nextcloud', function () {
$baseUrl = env('NEXT_CLOUD_URL');
$adminUsername = env('NEXT_CLOUD_USERNAME');
$adminPassword = env('NEXT_CLOUD_PASSWORD');
$response = NextCloudHelper::createFolder($baseUrl, $adminUsername, $adminPassword, 'test-folder');
dd($response);
});