Help for this page

Select Code to Download


  1. or download this
    package MyApp::Tables::MyTable;
    use Some::Fantastic::TableBuilder;
    ...
       # various named parameters
    );
    
  2. or download this
    sub show :Local {
      my $data = fetch_tabular_data_from_model();
    ...
      $c->stash(table => $table);
      $c->stash(template => 'mytable.tt2');
    }
    
  3. or download this
    [% table.render %]