PHP Classes

File: routes/web.php

Recommend this page to a friend!
  Classes of Hicri   Laravel Simple E-commerce   routes/web.php   Download  
File: routes/web.php
Role: Example script
Content type: text/plain
Description: Example scriptc
Class: Laravel Simple E-commerce
Show and sell products on a Web site
Author: By
Last change:
Date: Yesterday
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');
});