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