Showing
1 changed file
with
4 additions
and
0 deletions
| ... | @@ -24,6 +24,10 @@ Route::get('/', function () { | ... | @@ -24,6 +24,10 @@ Route::get('/', function () { |
| 24 | return view('welcome'); | 24 | return view('welcome'); |
| 25 | }); | 25 | }); |
| 26 | 26 | ||
| 27 | +Route::get('/phpinfo', function () { | ||
| 28 | + phpinfo(); | ||
| 29 | +}); | ||
| 30 | + | ||
| 27 | 31 | ||
| 28 | Route::get('/create_overlay', function () { | 32 | Route::get('/create_overlay', function () { |
| 29 | header ('Content-Type: image/png'); | 33 | header ('Content-Type: image/png'); | ... | ... |
-
Please register or login to post a comment