fix
This commit is contained in:
+15
-11
@@ -1,15 +1,15 @@
|
||||
<?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!
|
||||
|
|
||||
*/
|
||||
|--------------------------------------------------------------------------
|
||||
| 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('home');
|
||||
@@ -20,5 +20,9 @@ Route::get('/privacy', function () {
|
||||
});
|
||||
|
||||
Route::get('/terms', function () {
|
||||
return view('privacy');
|
||||
});
|
||||
return view('terms');
|
||||
});
|
||||
|
||||
Route::get('/security', function () {
|
||||
return view('security');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user