Initial commit
This commit is contained in:
11
routes/web.php
Normal file
11
routes/web.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\Calculator;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/welcome', function () {
|
||||
return view('welcome');
|
||||
});
|
||||
|
||||
|
||||
Route::get('/', [Calculator::class, 'index']);
|
||||
Reference in New Issue
Block a user