PHP Classes

File: apps/MS-AvailableHotels/routes/web.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Hotel Booking Available   apps/MS-AvailableHotels/routes/web.php   Download  
File: apps/MS-AvailableHotels/routes/web.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Hotel Booking Available
Search for hotels that are available for booking
Author: By
Last change:
Date: 2 years ago
Size: 655 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('/', 'HealthCheckController@info');
$router->get('/_health', 'HealthCheckController@health');

$router->get('/available', 'HotelsController@index');
$router->get('/search', 'HotelsController@search');