Help for this page

Select Code to Download


  1. or download this
    my $store = $schema->resultset('Items');
    $store = restrict_to_department( $store, $department ) if $department;
    ...
    sub restrict_to_department {
      $_[0]->search({ 'department.name' => $_[1] }, { join => "departments
    +" });
    }