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 TestApp::View::instance;
use Jifty::View::Declare -base;
use base 'TestApp::View::base';

sub base_path { '/instance' }

template 'myview' => sub {
    
};

template 'view' => sub {
    my $self = shift;
    outs("/instance/view=$self");
};

1;