PHP Classes

File: routes/web.php

Recommend this page to a friend!
  Classes of Hicri   Laravel Simple Docker   routes/web.php   Download  
File: routes/web.php
Role: Example script
Content type: text/plain
Description: Application Web script
Class: Laravel Simple Docker
Run example Laravel API application using Docker
Author: By
Last change:
Date: 1 month ago
Size: 492 bytes
 

Contents

Class file image Download
<?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('/', function () {
    return
view('welcome');
});