Catalyst-Manual
view release on metacpan or search on metacpan
lib/Catalyst/Manual/Intro.pod view on Meta::CPAN
use base qw/Catalyst::Controller/;
sub view : Local { }
sub list : Local { }
package MyApp::Controller::Cart;
use base qw/Catalyst::Controller/;
sub add : Local { }
sub update : Local { }
sub order : Local { }
Note that you can also supply attributes via the Controller's config so
long as you have at least one attribute on a subref to be exported
(:Action is commonly used for this) - for example the following is
equivalent to the same controller above:
package MyApp::Controller::Login;
use base qw/Catalyst::Controller/;
( run in 0.221 second using v1.01-cache-2.11-cpan-49f99fa48dc )