| 123456789101112131415161718192021222324252627282930313233343536373839 | 
							- <?php namespace App\Http\Middleware;
 
- use Closure;
 
- use Illuminate\Contracts\Routing\Middleware;
 
- use Illuminate\Session\TokenMismatchException;
 
- class CsrfMiddleware implements Middleware {
 
- 	/**
 
- 	 * Handle an incoming request.
 
- 	 *
 
- 	 * @param  \Illuminate\Http\Request  $request
 
- 	 * @param  \Closure  $next
 
- 	 * @return mixed
 
- 	 * 
 
- 	 * @throws TokenMismatchException
 
- 	 */
 
- 	public function handle($request, Closure $next)
 
- 	{
 
- 		if ($request->method() == 'GET' || $this->tokensMatch($request))
 
- 		{
 
- 			return $next($request);
 
- 		}
 
- 		throw new TokenMismatchException;
 
- 	}
 
- 	/**
 
- 	 * Determine if the session and input CSRF tokens match.
 
- 	 *
 
- 	 * @param  \Illuminate\Http\Request  $request
 
- 	 * @return bool
 
- 	 */
 
- 	protected function tokensMatch($request)
 
- 	{
 
- 		return $request->session()->token() == $request->input('_token');
 
- 	}
 
- }
 
 
  |