Basic Redirection

<!-- Simple redirect to a route -->
<button onclick="redirect('login')">Login</button>

<!-- Redirect with specific request type -->
<button onclick="redirect('dashboard', 'GET')">Dashboard</button>

Last updated