24 lines
841 B
PHP
24 lines
841 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\AboutPageController;
|
|
use App\Http\Controllers\ContactPageController;
|
|
use App\Http\Controllers\HomePageController;
|
|
use App\Http\Controllers\TeamPageController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
// Homepage...
|
|
Route::get('/', [HomePageController::class, 'index'])->name('home');
|
|
|
|
// About us...
|
|
// Route::get('/about', [AboutPageController::class, 'index'])->name('about.index');
|
|
|
|
// Teams...
|
|
// Route::get('/team', [TeamPageController::class, 'index'])->name('team.index');
|
|
|
|
// Contact us...
|
|
// Route::get('contact', [ContactPageController::class, 'index'])->name('contact.index');
|
|
Route::post('contact', [ContactPageController::class, 'store'])->name('contact.store');
|
|
|
|
Route::view('terms-and-conditions', 'pages.legal.terms-and-conditions');
|
|
Route::view('privacy-policy', 'pages.legal.privacy-policy');
|