The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package TestAppChainedRecursive::Controller::Foo;

use strict;
use warnings;

use base qw/Catalyst::Controller/;

sub foo : Chained('bar') CaptureArgs(1) { }
sub bar : Chained('foo') CaptureArgs(1) { }

1;