PHP Classes

File: api/routes/web.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   PHP App Generator   api/routes/web.php   Download  
File: api/routes/web.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP App Generator
Generate Web applications using Laravel
Author: By
Last change: Update of api/routes/web.php
Date: 1 year ago
Size: 527 bytes
 

Contents

Class file image Download
<?php

/** @var \Laravel\Lumen\Routing\Router $router */

/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It is a breeze. Simply tell Lumen the URIs it should respond to
| and give it the Closure to call when that URI is requested.
|
*/

$router->get('/', function () use ($router) {
    return
$router->app->version();
});