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