47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
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::get('/webpresence', function () {
|
|
return view('webpresence');
|
|
});
|
|
|
|
|
|
|
|
Route::post('customer/login/{id}', 'CustomerLoginController@startLogin');
|
|
Route::get('customer/loginlogo/', 'CustomerLoginController@loginLogo'); |