PHP Classes

File: apps/MS-AvailableHotels/app/Http/Middleware/ExampleMiddleware.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Hotel Booking Available   apps/MS-AvailableHotels/app/Http/Middleware/ExampleMiddleware.php   Download  
File: apps/MS-AvailableHotels/app/Http/Middleware/ExampleMiddleware.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Hotel Booking Available
Search for hotels that are available for booking
Author: By
Last change:
Date: 2 years ago
Size: 337 bytes
 

Contents

Class file image Download
<?php

namespace App\Http\Middleware;

use
Closure;

class
ExampleMiddleware
{
   
/**
     * Handle an incoming request.
     *
     * @param \Illuminate\Http\Request $request
     * @param \Closure $next
     * @return mixed
     */
   
public function handle($request, Closure $next)
    {
        return
$next($request);
    }
}