3.0: Dockerized laravel 8.0

This commit is contained in:
2021-01-07 10:24:30 -08:00
parent a0f7b51ba1
commit 9575f69b35
85 changed files with 10625 additions and 0 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
*/
protected $except = [
//
];
}