Files
MermsEmrWeb/mainwww/routes/web.php
T
Olusesan Ameye 4c6d4d98f0 fix
2020-09-07 10:33:03 -04:00

41 lines
978 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('/', 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');