1
0
Fork 0
pixelfed/routes/web.php

21 lines
530 B
PHP
Raw Normal View History

2018-04-15 23:56:48 +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!
|
*/
Route::get('/', function () {
return view('welcome');
});
2018-04-16 00:00:49 +00:00
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');