.. include:: ../Includes.rst.txt ===================== External Repositories ===================== If you wish to display records from a repository which is not part of your project, or is in a dependency which does not natively support Anthology, you can do so by creating a custom model and repository which extend the original. The following examples assume you wish to display records created by :composer:`friendsoftypo3/tt-address`, but the same principles apply to any repository. Model ===== Create a new model which extends the original. Unless required, you don't need to add any additional properties or methods to this model. **Classes/Domain/Model/Address.php** .. code-block:: php [ 'tableName' => 'tt_address', ], ]; After completing the steps above and clearing the cache, your new model will be available for selection in the Anthology plugin.