55 lines
1.2 KiB
PHP
55 lines
1.2 KiB
PHP
<?php
|
|
|
|
use App\Http\Controllers\DataController;
|
|
use Illuminate\Support\Facades\Route;
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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('/', function () {
|
|
// return view('welcome');
|
|
// });
|
|
|
|
|
|
Route::get('/make', function(){
|
|
|
|
echo Hash::make("123");
|
|
});
|
|
|
|
Route::get('/', [DataController::class, 'index']);
|
|
|
|
Route::get('/signup', function () {
|
|
return view('signup');
|
|
})->name('signup');
|
|
|
|
Route::get('/dashboard-student', function () {
|
|
return view('dashboard_student');
|
|
})->name('dashboard_student');
|
|
|
|
Route::get('/learning-student', function () {
|
|
return view('learning_student');
|
|
})->name('learning_student');
|
|
|
|
Route::get('/material-detail', function () {
|
|
return view('material_detail');
|
|
})->name('material_detail');
|
|
|
|
// Route Node JS
|
|
require __DIR__ . '/nodejs_routes.php';
|
|
|
|
// Route Aplas
|
|
|
|
// Route Flutter
|
|
|
|
// Route
|
|
require __DIR__ . '/android23_routes.php';
|