Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • 5588ef167719dcb9e1833f171f37ec24aa855b1b
  • main default protected
  • revert
  • 64160159
  • 64160292
  • 64160073
  • html-v_page
  • 64160174
  • 64160072
  • 64160295
  • production
11 results

web.php

Blame
  • web.php 581 B
    <?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::get('/', function () {
        return view('welcome');
    });
    
    Route::get('/Login',function () {
        return view('Login/v_Login');
    })->name('Login');