Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current none :
/
proc
/
self
/
root
/
var
/
www
/
html
/
tpid-jsd
/
routes
/
landingpage
/
Or
Select Your none :
Upload File :
New :
File
Dir
//proc/self/root/var/www/html/tpid-jsd/routes/landingpage/dynamic.php
<?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\Landing\AboutController; use App\Http\Controllers\Landing\BlogController; use App\Http\Controllers\Landing\ContactController; use App\Http\Controllers\Landing\DeadstockController; use App\Http\Controllers\Landing\DynamicController; use App\Http\Controllers\Landing\EventController; use App\Http\Controllers\Landing\ExperienceController; use App\Http\Controllers\Landing\HomeController; use App\Http\Controllers\Landing\RundownController; use App\Http\Controllers\Landing\TenantController; /* |-------------------------------------------------------------------------- | 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('/', [HomeController::class, 'index']); Route::get('/visitor', [HomeController::class, 'visitor']); Route::get('/about', [AboutController::class, 'index']); Route::get('/event', [EventController::class, 'index']); Route::get('/experience', [ExperienceController::class, 'index']); Route::get('/deadstock', [DeadstockController::class, 'index']); Route::get('/rundown', [RundownController::class, 'index']); // Mix controller Route::post('/language', [DynamicController::class, 'language']); Route::get('/gallery', [DynamicController::class, 'gallery']); Route::get('/askquestion', [DynamicController::class, 'askquestion']); Route::get('/partners', [DynamicController::class, 'partners']); // Controller for contact Route::get('/contact', [ContactController::class, 'index']); Route::post('/contact/store', [ContactController::class, 'store'])->name('contact.store'); Route::get('/tenantlist', [TenantController::class, 'index']); Route::get('/tenantlist-logo', [TenantController::class, 'logo']); // Controller for blogs Route::get('/blogs', [BlogController::class, 'index']); Route::get('/blog/{slug}', [BlogController::class, 'detail']); Route::get('/newsblog/{slug}', [BlogController::class, 'detailNewsBlog']);