Files
Speedtest-Tracker/routes/web.php
Henry Whitaker 0062ac6960 Added base app
Has basic login UI, has methods to run speedtests
2020-04-08 13:57:26 +01:00

21 lines
568 B
PHP

<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| 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!
|
*/
Route::get('/{path?}', function() {
return view('app', [ 'title' => 'Speedtest Checker' ]);
})
->where('path', '.*')
->name('react');