Files
salt-minv-graph/app/Http/Middleware/VerifyCsrfToken.php
Jaroslav Drzik e2f7d8b5c6 Git inicializacia
2019-11-15 11:03:55 +01:00

18 lines
311 B
PHP

<?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 = [
'/log'
];
}