Newer
Older
LaravelSample / src / routes / web.php
Shinya Tomozumi on 19 May 108 bytes First Commit
<?php

use Illuminate\Support\Facades\Route;

Route::get('/', function () {
    return view('welcome');
});