Files
shipping-portal/app/Http/Middleware/VerifyCsrfToken.php
Edmond Lang 66576b6eea no message
2026-01-25 23:13:09 +08:00

18 lines
327 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 = [
'move-order/api/move',
];
}