33 lines
913 B
PHP
33 lines
913 B
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 and all of them will
|
|
| be assigned to the "web" middleware group. Make something great!
|
|
|
|
|
*/
|
|
|
|
Route::get('/login', function () {
|
|
return view('login.index');
|
|
});
|
|
Route::get('/', function () {
|
|
return view('layout.index');
|
|
});
|
|
Route::get('/data-pribadi-kmpd', function () {
|
|
return view('KPMD.index');
|
|
});
|
|
Route::get('/data-pribadi-bumdes', function () {
|
|
return view('BumDes.index');
|
|
});
|
|
Route::get('/data-pribadi-caltrans', function () {
|
|
return view('CalTrans.index');
|
|
});
|
|
Route::get('/data-pribadi-deswita', function () {
|
|
return view('DesWita.index');
|
|
}); |