﻿file = r'routes\web.php'
with open(file, 'r', encoding='utf-8') as f:
    c = f.read()

# Cek apakah ada route yang intercept POST test-sessions
print("Routes POST test-sessions:")
import re
matches = re.findall(r"Route::post.*test-session.*", c)
for m in matches:
    print(m)
