Initial commit of laravel files.

This commit is contained in:
Krzysztof Płaczek
2022-08-05 11:37:12 +02:00
parent b74795c3a2
commit 3a6a2252a3
82 changed files with 11222 additions and 24 deletions

View File

@@ -0,0 +1,17 @@
<?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<int, string>
*/
protected $except = [
//
];
}