This commit is contained in:
Olusesan Ameye
2020-09-07 10:33:03 -04:00
parent c2d2897ad8
commit 4c6d4d98f0
401 changed files with 47976 additions and 1 deletions
+41
View File
@@ -0,0 +1,41 @@
<?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('/', function () {
return view('welcome');
});
Route::get('/about', function () {
return view('about');
});
Route::get('/pricing', function () {
return view('pricing');
});
Route::get('/product', function () {
return view('product');
});
Route::get('/team', function () {
return view('team');
});
Route::get('/contact', function () {
return view('contact');
});
Route::post('customer/login/{id}', 'CustomerLoginController@startLogin');
Route::get('customer/loginlogo/', 'CustomerLoginController@loginLogo');