File: /home/rtbrisc/larav/routes/web.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!
|
*/
// Home Route
Route::get('/', function () {
return view('welcome');
})->name('/');
// About Routes
Route::get('/about/about-bpl', function () {
return view('about/about-bpl');
})->name('about-bpl');
Route::get('/about/management-team', function () {
return view('about/management-team');
})->name('management-team');
Route::get('/about/bpl-teams', function () {
return view('about/bpl-teams');
})->name('bpl-teams');
Route::get('/about/iso-certification-journey', function () {
return view('about/iso-certification-journey');
})->name('iso-certification-journey');
Route::get('/about/quality-policy-statement', function () {
return view('about/quality-policy-statement');
})->name('quality-policy-statement');
Route::get('/about/certifications-and-awards', function () {
return view('about/certifications-and-awards');
})->name('certifications-and-awards');
// What we do
Route::get('/what-we-do/property-development', function () {
return view('what_we_do/property-development');
})->name('property-development');
Route::get('/what-we-do/facility-management', function () {
return view('what_we_do/facility-management');
})->name('facility-management');
Route::get('/what-we-do/project-management', function () {
return view('what_we_do/project-management');
})->name('project-management');
Route::get('/what-we-do/property-management', function () {
return view('what_we_do/property-management');
})->name('property-management');
Route::get('/what-we-do/sales-and-leasing', function () {
return view('what_we_do/sales-and-leasing');
})->name('sales-and-leasing');
Route::get('/what-we-do/special-project', function () {
return view('what_we_do/special-project');
})->name('special-projects');
Route::get('/what-we-do/project-details', function () {
return view('what_we_do/project-details');
})->name('project-details');
// Career
Route::get('/career', function () {
return view('career');
})->name('career');
// Contact Us
Route::get('/contact-us', function () {
return view('contact-us');
})->name('contact-us');
// Privcy Policy
Route::get('/privacy-policy', function () {
return view('privacy-policy');
})->name('privacy-policy');
// Auth Routes
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');