File "VerifyCsrfToken.php"

Full Path: /home/isoftco/public_html/hrm/app/Http/Middleware/VerifyCsrfToken.php
File size: 397 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Http\Middleware;

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

class VerifyCsrfToken extends BaseVerifier
{
    /**
     * The URIs that should be excluded from CSRF verification.
     *
     * @var array
     */
    protected $except = [
        "admin/billing/pay_2checkout",
        "verify-stripe-webhook",
        '/save-invoices'
    ];
}