App\Model\AlbumRepository::findAll PHP Method

findAll() public method

public findAll ( ) : Selection
return Nette\Database\Table\Selection
    public function findAll()
    {
        return $this->database->table('albums');
    }

Usage Example

 public function renderDefault()
 {
     $this->template->albums = $this->albums->findAll()->order('artist')->order('title');
 }