Help for this page

Select Code to Download


  1. or download this
    $player_static->player_data_currs->team_libl;
    
  2. or download this
    __PACKAGE__->has_many(
      "player_data_currs",
      "LIBL::Schema::Result::PlayerDataCurr",
      { "foreign.id_static" => "self.id" },
      { cascade_copy => 0, cascade_delete => 0 },
    );
    
  3. or download this
    my $roster_rs = $player_static_model->search(
            {
    ...
            },
        );
    say scalar $roster_rs->all;
    
  4. or download this
    foreach my $player_static ($roster_rs->all){
      say $player_static->player_data_currs;
    }
    
  5. or download this
    LIBL::Schema::Result::PlayerDataCurr=HASH(0x39b40b8)
    LIBL::Schema::Result::PlayerDataCurr=HASH(0x39b2010)
    LIBL::Schema::Result::PlayerDataCurr=HASH(0x39b40e8)
    
  6. or download this
    foreach my $player_static ($roster_rs->all){
            say $player_static->player_data_currs->team_libl;
    }
    
  7. or download this
    Can't locate object method "team_libl" via package "DBIx::Class::Resul
    +tSet" at /home/varanasi/Documents/80-004 LIBL-14/bin/monks.pl line 69
    +.