⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.101
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
dev-unit.com
/
devweb-lastV
/
routes
/
View File Name :
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! | */ Route::group(['prefix' => 'xyz-m'], function () { Voyager::routes(); }); Route::get('/start-zone-privacy-policy', function () { return view('dev-unit.start-zone'); }); Route::group([ 'prefix' => '{locale}', 'middleware' => 'setlocale'], function() { Route::get('/', 'DevController@index'); Route::get('/home', 'DevController@index'); Route::get('/services', 'DevController@services'); Route::get('/services/{service}', 'DevController@serviceDetails'); Route::get('/solutions', 'DevController@solutions'); Route::get('/solutions/{solution}', 'DevController@solutionDetail'); Route::get('/about-us', 'DevController@aboutUs'); Route::get('/contact-us', 'DevController@getContactUs'); }); Route::get('/', function () { return redirect(app()->getLocale()); }); Route::get('/internal', function () { return view('web.page-detail'); }); /*Route::get('/about-us', function () { return view('web.about-us'); });*/ Auth::routes(); Route::get('/home', 'HomeController@index')->name('home');