prod commit

This commit is contained in:
2022-04-04 07:55:44 +05:30
commit 7c3f93e0d0
1377 changed files with 12171 additions and 0 deletions
@@ -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 = [
//
];
}