Initial commit

This commit is contained in:
Ronald Huynen
2026-03-23 21:37:59 +01:00
commit 2547717edb
2193 changed files with 972171 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Debug 1</title>
</head>
<body>
<ul>
@foreach ([
['name' => 'Debug 1', 'url' => route('debug-1')],
['name' => 'Debug 2', 'url' => route('debug-2')],
['name' => 'Export link', 'url' => route('export-test')],
['name' => 'Test ip location', 'url' => route('ip-location')],
['name' => 'Web Tinker', 'url' => '/test/tinker'], // Direct path added here
['name' => 'Clear Cache', 'url' => route('clear-cache')],
['name' => 'Optimize Clear', 'url' => route('optimize-clear')],
] as $link)
<li><a href="{{ $link['url'] }}">{{ $link['name'] }}</a></li>
@endforeach
</ul>
<hr />
<div>
{{ phpinfo() }}
{{ xdebug_info() }}
</div>
</body>
</html>