File: /home/spacei/.trash/web.php
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\ContactController;
/*
|--------------------------------------------------------------------------
| 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('home');
})->name('home');
Route::get('/contact', [ContactController::class, 'contact'])->name('contact');
Route::post('/contact/form', [ContactController::class, 'contactForm'])->name('contact.form');
Route::get('/facility-sharing', function () {
return view('facility-sharing');
})->name('facility-sharing');
Route::get('/facility-sharing-melbourne', function () {
return view('facility-sharing-melbourne');
})->name('facility-sharing-melbourne');