PHP Classes

File: server/app/Http/Middleware/VerifyCsrfToken.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   server/app/Http/Middleware/VerifyCsrfToken.php   Download  
File: server/app/Http/Middleware/VerifyCsrfToken.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 307 bytes
 

Contents

Class file image Download
<?php

namespace App\Http\Middleware;

use
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;

class
VerifyCsrfToken extends Middleware
{
   
/**
     * The URIs that should be excluded from CSRF verification.
     *
     * @var array
     */
   
protected $except = [
       
//
   
];
}