Initial commit
This commit is contained in:
34
resources/views/test/debug-2.blade.php
Normal file
34
resources/views/test/debug-2.blade.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
||||
<title>Debug 2</title>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<ul>
|
||||
@foreach ([
|
||||
['name' => 'Debug 1', 'url' => route('debug-1')],
|
||||
['name' => 'Debug 2', 'url' => route('debug-2')],
|
||||
['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 />
|
||||
Altcha:
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user