brc/brc_laravel/brc/routes/web.php
2020-09-29 21:32:40 +02:00

29 lines
683 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('/', 'GeneralController@show');
Route::get('/projects', function () {
return view('projects');
});
Route::get('/about', function () {
return view('about');
});
Route::get('/contacts', function () {
return view('contacts');
});