- or download this
# step one:
# set up a base method to make sure your item exists, and
...
}
}
- or download this
sub base : Chained('/') PathPart('item') CaptureArgs(1)
- or download this
## the next part is to link the end point to the chain
## thisis done by passing the name of the base chain method to Chaine
+d for this method
...
);
}
- or download this
sub blog : Chained('/') PathPart('blog') CaptureArgs(0) {
...
}
}