HEX
Server: Apache
System: Linux mwt-uat001.smartserver247.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: spacei (1051)
PHP: 7.4.33
Disabled: passthru,shell_exec,system
Upload Files
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');