## the next part is to link the end point to the chain ## thisis done by passing the name of the base chain method to Chained for this method sub view : Chained('base') PathPart('view') Args(0) { my ($self, $c) = @_; my $item = $c->stash->{item}; $c->stash( template => 'item/view.tt2', item => $item, ); }