1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 02:28:08 +00:00
pixelfed/routes/web.php

21 lines
530 B
PHP
Raw Normal View History

2018-04-15 17:56:48 -06: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-15 18:00:49 -06:00
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');