VerifyCsrfToken.php 311 Bytes
Newer Older
Graham Campbell committed
1 2 3
<?php

namespace App\Http\Middleware;
4 5 6

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

Taylor Otwell committed
7 8 9
class VerifyCsrfToken extends BaseVerifier
{
    /**
Taylor Otwell committed
10
     * The URIs that should be excluded from CSRF verification.
11 12 13 14 15 16
     *
     * @var array
     */
    protected $except = [
        //
    ];
17
}