Files
spa-api/routes/web.php

19 lines
492 B
PHP
Raw Normal View History

2014-11-02 10:02:20 -06:00
<?php
2019-12-20 15:10:23 -06:00
use Illuminate\Support\Facades\Route;
2014-11-02 10:02:20 -06:00
/*
|--------------------------------------------------------------------------
2016-07-14 09:36:17 -05:00
| Web Routes
2014-11-02 10:02:20 -06:00
|--------------------------------------------------------------------------
|
2016-10-27 04:40:15 +00:00
| Here is where you can register web routes for your application. These
2023-01-25 18:07:48 +00:00
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
2014-11-02 10:02:20 -06:00
|
*/
2016-03-23 17:04:42 -05:00
Route::get('/', function () {
return view('welcome');
});