41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use App\Http\Controllers\DataWAController;
|
|
use App\Http\Controllers\DataTeleController;
|
|
use App\Http\Controllers\VisualWAController;
|
|
use App\Http\Controllers\VisualTeleController;
|
|
use App\Http\Controllers\MatrixController;
|
|
use App\Http\Controllers\PerbandinganController;
|
|
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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('/', [PerbandinganController::class, 'index'])->name('dashboard');
|
|
|
|
Route::get('/datawa', [DataWAController::class, 'index'])->name('wa');
|
|
|
|
Route::get('/datatele', [DataTeleController::class, 'index'])->name('tele');
|
|
|
|
Route::get('/grafikwa', [VisualWAController::class, 'index'])->name('vwa');
|
|
|
|
Route::get('/grafiktele', [VisualTeleController::class, 'index'])->name('vtele');
|
|
|
|
// Route::get('/grafikwa', function () {
|
|
// return view('grafikWA');
|
|
// })->name('vwa');
|
|
|
|
// Route::get('/grafiktele', function () {
|
|
// return view('grafiktele');
|
|
// })->name('vtele');
|
|
|
|
Route::get('/matrix', [MatrixController::class, 'index'])->name('matrix'); |