This commit is contained in:
Olusesan Ameye
2021-01-30 12:04:54 -05:00
parent 4ce9471b9e
commit 53898af1d8
6 changed files with 440 additions and 1382 deletions
+15 -11
View File
@@ -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');
});