TCVis/routes/web.php

18 lines
593 B
PHP
Raw Permalink Normal View History

2018-12-21 12:45:08 +00:00
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
2019-01-02 19:18:53 +00:00
Route::get('/', 'HomeController@homeNew');
Route::get('/chart/{chart}', 'HomeController@viewChart');
2018-12-22 03:47:09 +00:00
Route::get('/statistics', 'HomeController@statistics');
2019-01-02 19:18:53 +00:00
Route::get('/nukes','HomeController@nukes');