Your ROOT_URL in app.ini is http://159.89.207.79:3000/ but you are visiting http://9.cron.my.id:3000/tribikram/AplusAgency/blame/commit/d552d5df0294ea4377ecb324cefbfacd95e942fb/app/Http/Middleware/VerifyCsrfToken.php You should set ROOT_URL correctly, otherwise the web may not work correctly.

18 lines
320 B

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