Skip to content

Instantly share code, notes, and snippets.

@Tmeister
Created July 10, 2015 22:34
Show Gist options
  • Save Tmeister/ca9ad6c17a97bb447e28 to your computer and use it in GitHub Desktop.
Save Tmeister/ca9ad6c17a97bb447e28 to your computer and use it in GitHub Desktop.
<?php
/**
* The application's route middleware.
*
* @var array
*/
protected $routeMiddleware = [
'auth' => \App\Http\Middleware\Authenticate::class,
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
'country' => \App\Http\Middleware\CountryMiddleware::class
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment