The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

{
$CatalystX::Resource::TraitFor::Controller::Resource::Show::VERSION = '0.001_003';
}
# ABSTRACT: a show action for your resource
sub show : Chained('base_with_id') PathPart('show') Args(0) {
my ( $self, $c ) = @_;
}
1;
__END__
=pod
=head1 NAME
CatalystX::Resource::TraitFor::Controller::Resource::Show - a show action for your resource
=head1 VERSION
version 0.001_003
=head1 ACTIONS
=head2 show
display the resource specified by its id, accessible as $c->stash->{resource}
=head1 AUTHOR
David Schmidt <davewood@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by David Schmidt.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut