- 🇮🇳India vikas500 Pune
Modify the code as needed to correctly handle the Language object in twig file. Remember, you should access properties or methods of the Language object (like getId() for the language code) instead of trying to print the object directly.
Error Code:-<span class="icpdlogo"><img src="{{ base_path ~ directory }}/images/icpd-30-logoinverted-{{ language }}.png" alt="ICPD"></span>
Correct Code:-<span class="icpdlogo"><img src="{{ base_path ~ directory }}/images/icpd-30-logoinverted-{{ language.getId() }}.png" alt="ICPD"></span>
Thank You!