in Http/Middleware/VerifyCsrfToken.php you have an array called $except. Just add your api uri.
/** * The URIs that should be excluded from CSRF verification. * * @var array */ protected $except = [ 'api/*' ];
Return to Thread...